AWS Lambda

Run code without thinking about servers. Pay only for the compute time you consume.

AWS Lambda lets you run code without provisioning or managing servers. You pay only for the compute time you consume - there is no charge when your code is not running.

With Lambda, you can run code for virtually any type of application or backend service - all with zero administration. Just upload your code and Lambda takes care of everything required to run and scale your code with high availability. You can set up your code to automatically trigger from other AWS services or call it directly from any web or mobile app.

Getting Started with AWS Lambda (3:00)

Benefits

NO SERVERS TO MANAGE

AWS Lambda automatically runs your code without requiring you to provision or manage servers. Just write the code and upload it to Lambda.

CONTINUOUS SCALING

AWS Lambda automatically scales your application by running code in response to each trigger. Your code runs in parallel and processes each trigger individually, scaling precisely with the size of the workload.

SUBSECOND METERING

With AWS Lambda, you are charged for every 100ms your code executes and the number of times your code is triggered. You don't pay anything when your code isn't running.

How it works

How AWS Lambda Works

Use cases

What can you build with AWS Lambda? Learn more about the use cases below:


Data processing

You can use AWS Lambda to execute code in response to triggers such as changes in data, shifts in system state, or actions by users. Lambda can be directly triggered by AWS services such as S3, DynamoDB, Kinesis, SNS, and CloudWatch, or it can be orchestrated into workflows by AWS Step Functions. This allows you to build a variety of real-time serverless data processing systems.

Real-time file processing

You can use Amazon S3 to trigger AWS Lambda to process data immediately after an upload. For example, you can use Lambda to thumbnail images, transcode videos, index files, process logs, validate content, and aggregate and filter data in real-time.

Reference Architecture: Sample Code

AWS Lambda File Processing
The_Seattle_Times_logo2

The Seattle Times uses AWS Lambda to resize images for viewing on different devices such as desktop computers, tablets, and smartphones. Read the case study »

Real-time stream processing

You can use AWS Lambda and Amazon Kinesis to process real-time streaming data for application activity tracking, transaction order processing, click stream analysis, data cleansing, metrics generation, log filtering, indexing, social media analysis, and IoT device data telemetry and metering.

Reference Architecture: Sample code

AWS Lambda Stream Processing
localytics-logo2

Localytics processes billions of data points in real-time, and uses Lambda to process historical and live data stored in S3 or streamed from Kinesis. Read the case study »

Extract, transform, load

You can use AWS Lambda to perform data validation, filtering, sorting, or other transformations for every data change in a DynamoDB table and load the transformed data to another data store.

AWS Lambda ETL
zillow-Logo2

Zillow uses Lambda and Kinesis to track a subset of mobile metrics in realtime. With Kinesis and Lambda, we were able to develop and deploy a cost effective solution in two weeks.


Backends

You can build serverless backends using AWS Lambda to handle web, mobile, Internet of Things (IoT), and 3rd party API requests.

IoT backends

You can build serverless backends using AWS Lambda to handle web, mobile, Internet of Things (IoT), and 3rd party API requests.

Reference Architecture: Sample code

AWS Lambda IoT Backend

Mobile backends

You can build backends using AWS Lambda and Amazon API Gateway to authenticate and process API requests. Lambda makes it easy to create rich, personalized app experiences.

Reference Architecture: Sample code

AWS Lambda Mobile Backend
Bustle_logo2

Bustle runs a serverless backend for its Bustle iOS app and websites using AWS Lambda and Amazon API Gateway. Serverless architectures allow Bustle to never have to deal with infrastructure management, so every engineer can focus on building out new features and innovating. Read the case study »

Web applications

By combining AWS Lambda with other AWS services, developers can build powerful web applications that automatically scale up and down and run in a highly available configuration across multiple data centers – with zero administrative effort required for scalability, back-ups or multi-data center redundancy.

Reference Architecture: Sample code

AWS Lambda Web Backend

Case studies

Coca Cola

The Coca-Cola Company, an American multinational beverage corporation, used AWS Lambda and AWS Step Functions to build a cost-effective serverless solution.

Read the blog »

iRobot

iRobot, a leading global consumer robot company, is building the next generation of connected devices for the smart home using a serverless architecture.

Read more »

Benchling

Benchling, a life science software company, created a technique that researchers use to modify parts of a genome with extreme precision using serverless architecture.

Read more »

Thomson Reuters-logo2

Thomson Reuters uses AWS Lambda to process up to 4,000 events per second for its usage analytics service, and it took five months to deploy into production.

Read more »

Get started with AWS Lambda

Next-Steps-Icon_Create-account

Sign up for an AWS account

Instantly get access to the AWS Free Tier.
Next-Steps-Icon_Tutorial

Learn with step-by-step tutorials

Explore and learn with simple tutorials.
Next-Steps-Icon_Login

Start building with AWS Lambda

Learn more about AWS Lambda

Visit the features page
Ready to build?
Get started with AWS Lambda
Have more questions?
Contact us
#####EOF##### Information Security | Amazon.jobs

Information Security

102 open jobs

We Are the Guardians of Customer Trust

 

At Amazon, we are obsessed with customer trust. Information Security maintains this by guarding the confidentiality and integrity of Amazon and customer data. We assess risk, classify data and systems, detect potential intrusion, and render useless the value of data that may be leaked.

Our teams span over 10 countries worldwide, and our focus areas include: security intelligence, application security, incident response, security operations, risk and compliance, acquisitions and subsidiaries, and external partner security. Our mission includes instilling awareness to safeguard all customer and employee data, applications, services, and assets. To accomplish this, we unite with Amazon organizations to build security best practices into enterprise-wide systems. Our guidance and leadership equip our partners to maintain high security standards. 

Find jobs in Information Security

#####EOF##### What is Caching and How it Works | AWS

Caching Overview

Caching helps applications perform dramatically faster and cost significantly less at scale

What is Caching?

In computing, a cache is a high-speed data storage layer which stores a subset of data, typically transient in nature, so that future requests for that data are served up faster than is possible by accessing the data’s primary storage location. Caching allows you to efficiently reuse previously retrieved or computed data.

How does Caching work?

The data in a cache is generally stored in fast access hardware such as RAM (Random-access memory) and may also be used in correlation with a software component. A cache's primary purpose is to increase data retrieval performance by reducing the need to access the underlying slower storage layer.

Trading off capacity for speed, a cache typically stores a subset of data transiently, in contrast to databases whose data is usually complete and durable.

ElastiCache Deep Dive: Best Practices and Usage Patterns

Caching Overview

RAM and In-Memory Engines: Due to the high request rates or IOPS (Input/Output operations per second) supported by RAM and In-Memory engines, caching results in improved data retrieval performance and reduces cost at scale. To support the same scale with traditional databases and disk-based hardware, additional resources would be required. These additional resources drive up cost and still fail to achieve the low latency performance provided by an In-Memory cache.

Applications: Caches can be applied and leveraged throughout various layers of technology including Operating Systems, Networking layers including Content Delivery Networks (CDN) and DNS, web applications, and Databases. You can use caching to significantly reduce latency and improve IOPS for many read-heavy application workloads, such as Q&A portals, gaming, media sharing, and social networking. Cached information can include the results of database queries, computationally intensive calculations, API requests/responses and web artifacts such as HTML, JavaScript, and image files. Compute-intensive workloads that manipulate data sets, such as recommendation engines and high-performance computing simulations also benefit from an In-Memory data layer acting as a cache. In these applications, very large data sets must be accessed in real-time across clusters of machines that can span hundreds of nodes. Due to the speed of the underlying hardware, manipulating this data in a disk-based store is a significant bottleneck for these applications.

Design Patterns: In a distributed computing environment, a dedicated caching layer enables systems and applications to run independently from the cache with their own lifecycles without the risk of affecting the cache. The cache serves as a central layer that can be accessed from disparate systems with its own lifecycle and architectural topology. This is especially relevant in a system where application nodes can be dynamically scaled in and out. If the cache is resident on the same node as the application or systems utilizing it, scaling may affect the integrity of the cache. In addition, when local caches are used, they only benefit the local application consuming the data. In a distributed caching environment, the data can span multiple cache servers and be stored in a central location for the benefit of all the consumers of that data.

Caching Best Practices: When implementing a cache layer, it’s important to understand the validity of the data being cached. A successful cache results in a high hit rate which means the data was present when fetched. A cache miss occurs when the data fetched was not present in the cache. Controls such as TTLs (Time to live) can be applied to expire the data accordingly. Another consideration may be whether or not the cache environment needs to be Highly Available, which can be satisfied by In-Memory engines such as Redis. In some cases, an In-Memory layer can be used as a standalone data storage layer in contrast to caching data from a primary location. In this scenario, it’s important to define an appropriate RTO (Recovery Time Objective--the time it takes to recover from an outage) and RPO (Recovery Point Objective--the last point or transaction captured in the recovery) on the data resident in the In-Memory engine to determine whether or not this is suitable. Design strategies and characteristics of different In-Memory engines can be applied to meet most RTO and RPO requirements.

diagram_cachingmicrosite
Layer Client-Side DNS Web App Database
Use Case

Accelerate retrieval of web content from websites (browser or device)

Domain to IP Resolution Accelerate retrieval of web content from web/app servers. Manage Web Sessions (server side) Accelerate application performance and data access Reduce latency associated with database query requests
Technologies HTTP Cache Headers, Browsers DNS Servers HTTP Cache Headers, CDNs, Reverse Proxies, Web Accelerators, Key/Value Stores Key/Value data stores, Local caches Database buffers, Key/Value data stores
Solutions Browser Specific Amazon Route 53 Amazon CloudFrontElastiCache for RedisElastiCache for MemcachedPartner Solutions Application Frameworks, ElastiCache for RedisElastiCache for MemcachedPartner Solutions  ElastiCache for RedisElastiCache for Memcached

Caching with Amazon ElastiCache

Amazon ElastiCache is a web service that makes it easy to deploy, operate, and scale an in-memory data store or cache in the cloud. The service improves the performance of web applications by allowing you to retrieve information from fast, managed, in-memory data stores, instead of relying entirely on slower disk-based databases. Learn how you can implement an effective caching strategy with this technical whitepaper on in-memory caching.

Benefits of Caching

Improve Application Performance

Because memory is orders of magnitude faster than disk (magnetic or SSD), reading data from in-memory cache is extremely fast (sub-millisecond). This significantly faster data access improves the overall performance of the application.

Reduce Database Cost

A single cache instance can provide hundreds of thousands of IOPS (Input/output operations per second), potentially replacing a number of database instances, thus driving the total cost down. This is especially significant if the primary database charges per throughput. In those cases the price savings could be dozens of percentage points.

Reduce the Load on the Backend

By redirecting significant parts of the read load from the backend database to the in-memory layer, caching can reduce the load on your database, and protect it from slower performance under load, or even from crashing at times of spikes.

Predictable Performance

A common challenge in modern applications is dealing with times of spikes in application usage. Examples include social apps during the Super Bowl or election day, eCommerce websites during Black Friday, etc. Increased load on the database results in higher latencies to get data, making the overall application performance unpredictable. By utilizing a high throughput in-memory cache this issue can be mitigated.

Eliminate Database Hotspots

In many applications, it is likely that a small subset of data, such as a celebrity profile or popular product, will be accessed more frequently than the rest. This can result in hot spots in your database and may require overprovisioning of database resources based on the throughput requirements for the most frequently used data. Storing common keys in an in-memory cache mitigates the need to overprovision while providing fast and predictable performance for the most commonly accessed data.

Increase Read Throughput (IOPS)

In addition to lower latency, in-memory systems also offer much higher request rates (IOPS) relative to a comparable disk-based database. A single instance used as a distributed side-cache can serve hundreds of thousands of requests per second.

Use Cases & Industries

  • Use Cases
  • Industries
  • Use Cases
  • Learn about various caching use cases

    Database Caching

    The performance, both in speed and throughput that your database provides can be the most impactful factor of your application’s overall performance. And despite the fact that many databases today offer relatively good performance, for a lot use cases your applications may require more. Database caching allows you to dramatically increase throughput and lower the data retrieval latency associated with backend databases, which as a result, improves the overall performance of your applications. The cache acts as an adjacent data access layer to your database that your applications can utilize in order to improve performance. A database cache layer can be applied in front of any type of database, including relational and NoSQL databases. Common techniques used to load data into you’re a cache include lazy loading and write-through methods. For more information, click here.

    Content Delivery Network (CDN)

    When your web traffic is geo-dispersed, it’s not always feasible and certainly not cost effective to replicate your entire infrastructure across the globe. A CDN provides you the ability to utilize its global network of edge locations to deliver a cached copy of web content such as videos, webpages, images and so on to your customers. To reduce response time, the CDN utilizes the nearest edge location to the customer or originating request location in order to reduce the response time. Throughput is dramatically increased given that the web assets are delivered from cache. For dynamic data, many CDNs can be configured to retrieve data from the origin servers.

    Amazon CloudFront is a global CDN service that accelerates delivery of your websites, APIs, video content or other web assets. It integrates with other Amazon Web Services products to give developers and businesses an easy way to accelerate content to end users with no minimum usage commitments. To learn more about CDNs, click here.

    Domain Name System (DNS) Caching

    Every domain request made on the internet essentially queries DNS cache servers in order to resolve the IP address associated with the domain name. DNS caching can occur on many levels including on the OS, via ISPs and DNS servers.

    Amazon Route 53 is a highly available and scalable cloud Domain Name System (DNS) web service.

    Session Management

    HTTP sessions contain the user data exchanged between your site users and your web applications such as login information, shopping cart lists, previously viewed items and so on. Critical to providing great user experiences on your website is managing your HTTP sessions effectively by remembering your user’s preferences and providing rich user context. With modern application architectures, utilizing a centralized session management data store is the ideal solution for a number of reasons including providing, consistent user experiences across all web servers, better session durability when your fleet of web servers is elastic and higher availability when session data is replicated across cache servers.

    For more information, click here.

    Application Programming Interfaces (APIs)

    Today, most web applications are built upon APIs. An API generally is a RESTful web service that can be accessed over HTTP and exposes resources that allow the user to interact with the application. When designing an API, it’s important to consider the expected load on the API, the authorization to it, the effects of version changes on the API consumers and most importantly the API’s ease of use, among other considerations. It’s not always the case that an API needs to instantiate business logic and/or make a backend requests to a database on every request. Sometimes serving a cached result of the API will deliver the most optimal and cost-effective response. This is especially true when you are able to cache the API response to match the rate of change of the underlying data. Say for example, you exposed a product listing API to your users and your product categories only change once per day. Given that the response to a product category request will be identical throughout the day every time a call to your API is made, it would be sufficient to cache your API response for the day. By caching your API response, you eliminate pressure to your infrastructure including your application servers and databases. You also gain from faster response times and deliver a more performant API.

    Amazon API Gateway is a fully managed service that makes it easy for developers to create, publish, maintain, monitor, and secure APIs at any scale.

    Caching for Hybrid Environments

    In a hybrid cloud environment, you may have applications that live in the cloud and require frequent access to an on-premises database. There are many network topologies that can by employed to create connectivity between your cloud and on-premises environment including VPN and Direct Connect. And while latency from the VPC to your on-premises data center may be low, it may be optimal to cache your on-premises data in your cloud environment to speed up overall data retrieval performance.

    Web Caching

    When delivering web content to your viewers, much of the latency involved with retrieving web assets such as images, html documents, video, etc. can be greatly reduced by caching those artifacts and eliminating disk reads and server load. Various web caching techniques can be employed both on the server and on the client side. Server side web caching typically involves utilizing a web proxy which retains web responses from the web servers it sits in front of, effectively reducing their load and latency. Client side web caching can include browser based caching which retains a cached version of the previously visited web content. For more information on Web Caching, click here.

    General Cache

    Accessing data from memory is orders of magnitude faster than accessing data from disk or SSD, so leveraging data in cache has a lot of advantages. For many use-cases that do not require transactional data support or disk based durability, using an in-memory key-value store as a standalone database is a great way to build highly performant applications. In addition to speed, application benefits from high throughput at a cost-effective price point. Referenceable data such product groupings, category listings, profile information, and so on are great use cases for a general cache. For more information on general cache, click here.

    Integrated Cache

    An integrated cache is an in-memory layer that automatically caches frequently accessed data from the origin database. Most commonly, the underlying database will utilize the cache to serve the response to the inbound database request given the data is resident in the cache. This dramatically increases the performance of the database by lowering the request latency and reducing CPU and memory utilization on the database engine. An important characteristic of an integrated cache is that the data cached is consistent with the data stored on disk by the database engine.

  • Industries
  • Learn about different industries and the various caching use cases

    Mobile

    Mobile applications are an incredibly fast growing market segment given the rapid consumer device adoption and the decline in use of traditional computer equipment. Whether it be for games, commercial applications, health applications, and so on, virtually every market segment today has a mobile friendly application. From an application development perspective, building mobile apps is very similar to building any other form of application. You have the same areas of concern, your presentation tier, business tier and data tier. While your screen real estate and development tools are different, delivering a great user experience is a shared goal across all applications. With effective caching strategies, your mobile applications can deliver the performance your users expect, scale massively, and reduce your overall cost.

    The AWS Mobile Hub is a console that provides an integrated experience for discovering, configuring, and accessing AWS cloud services for building, testing, and monitoring usage of mobile apps.

    Internet of Things (IoT)

    The Internet of Things is a concept behind gathering and delivering information from a device and the physical world via device sensors to the internet or application consuming the data. The value of IoT is being able to understand the captured data at near real time intervals which ultimately allows the consuming system and applications the ability to respond rapidly to that data. Take for example, a device that transmits its GPS coordinates. Your IoT application could respond by suggesting points of interest relative to the proximity of those coordinates. Furthermore, if you had stored preferences related to the user of the device, you could fine tune those recommendations tailored to that individual. In this particular example, the speed at which the application can respond to the coordinates is critical to achieving a great user experience. Caching can play an important role here, for example, the points of interest along with the geo coordinates could be stored in a key/value store such as Redis to enable fast retrieval. From an application development perspective, you can essentially code your IoT application to respond to any event given there is a programmatic means to do so. Important considerations to be made when building an IoT architecture include the response time involved with analyzing the ingested data, architecting a solution that can scale N number of devices and delivering an architecture that is cost-effective.

    AWS IoT is a managed cloud platform that lets connected devices easily and securely interact with cloud applications and other devices.

    Further Reading: Managing IoT and Time Series Data with Amazon ElastiCache for Redis

    Advertising Technology

    Modern Ad Tech applications are particularly demanding in terms of performance. An example of a significant area of growth in AdTech is real-time bidding (RTB), which is the auction-based approach for transacting digital display ads in real time, at the most granular impression level. RTB was the dominant transaction method in 2015, accounting for 74.0 percent of programmatically purchased advertising, or 11 billion dollars in the US (according to eMarketer Analysis). When building a real-time bidding app, a millisecond can be the difference between submitting the bid on time and it becoming irrelevant. This means that getting the bidding information from the database must be extremely fast. Database caching, which can access bidding details in sub milliseconds, is a great solution for achieving that high performance.

    Gaming

    Interactivity is a cornerstone requirement for almost any modern game. Nothing frustrates players more than a slow or unresponsive game, and those rarely become successful. The requirement on performance is even more demanding for mobile multiplayer games, where an action that any one player takes needs to be shared with others in real time. Caching plays a crucial role in keeping the game smooth by providing sub-millisecond query response for frequently accessed data. It is also helpful to alleviate hot key issues when the same data is queried multiple times, such as “who are the current top 10 players by score?”

    To learn more about developing games on AWS click here.

    Media

    Media companies often deal with the need to transmit a large amount of static content to their customers with a constantly changing number of readers/viewers. An example is a video streaming service such as Netflix or Amazon Video, which streams a large amount of video content to the viewers. This is a perfect fit for a Content Delivery Network, where data is stored on a globally distributed set of caching servers. Another aspect of media applications is that load tends to be spikey and unpredictable. Imagine a blog on a website that a celebrity just tweeted about, or the website of a Football team during the Super Bowl. Such a large spike of demand to a small subset of content is a challenge to most databases since they are limited in their per-key throughput. Since memory has a much higher throughput than disk, a database cache would resolve the issue by redirecting the reads to the in memory cache.

    Ecommerce

    Modern eCommerce applications are becoming more sophisticated, offering personalized shopping experience, including real-time recommendations based on a user’s data and shopping history. Those often also include looking at a user’s social network and providing the recommendation based on what her friends liked or purchased. While the amount of data needed to process is increasing, customer’s patience is not. Therefore, keeping the application performing in real-time is not a luxury, but a necessity; a well-executed caching strategy is a critical aspect of the application performance, and could be the difference between an application’s success or failure, between making a sale or losing a customer.

    Click here for sample eCommerce architecture.

    Social Media

    Social Media apps have taken the world by storm. Social networks like Facebook, Twitter, Instagram and Snapchat have a vast number of users who consume ever growing amount of content. When a user opens her feed, she expects to see her latest personalized content in near real-time. That is not static content since each user has different friends, images, interests, etc., exacerbating the engineering complexity needs of the underlying platform. Social Media apps are also very prone to spikes in usage around major entertainment, sports, and political events. Such spike resiliency and real-time performance are achieved through multiple layers of caching – including Content Delivery Network for the static content such as background images, session cache for keeping track of a user’s current session data, and database cache for keeping frequently accessed data such as latest news from closest friends and the last few images handy.

    Healthcare and Wellness

    The healthcare industry is going through a digital revolution, making care both available and accessible to more and more patients around the world. Some applications allow patients to see Doctors for video consultations, and most major providers have apps that allow patients to see their test results and interact with the medical staff. On the wellness side, there is a plethora of applications that range from tracking a user’s specific sensor activity (e.g. FitBit and Jawbone), to comprehensive wellness coaching and data. Given the interactive nature of those apps, the need for fast-performing applications, business, and data tiers must be addressed. With an effective caching strategy you will be able to provide fast performance, reduce the overall infrastructure costs, and scale as your usage grows.

    To learn more about building Healthcare apps on AWS click here.

    Finance and Financial Technology

    The way we consume financial services has evolved dramatically over the recent years. Applications include accessing banking and insurance services, fraud detection, investment services, optimizing capital markets via real-time algorithms, and more. Providing real-time access to a customer’s financial data, allowing him to make transactions such as transferring money, or making payments is challenging. First, similar constraints apply as in other applications where a user wants to interact with the app in near real-time. In addition, financial applications may impose additional requirements such as increased security and fraud detection. An efficient architecture, including multi-layer caching strategy, is critical to achieve the performance expected by users. Based on the application needs, the caching layers would include a session cache for storing a user’s session data, a Content Delivery Network for serving static content, and a database cache for frequently accessed data such as the customer’s 10 most recent purchases.

    To learn more about Financial Services apps on AWS click here.

Get started with Amazon ElastiCache

icon1

Sign up for an AWS account

Instantly get access to the AWS Free Tier.
icon2

Learn with simple tutorials

Explore how to create a Redis cluster.

icon3

Start building

Begin building with help from the user guide.

#####EOF##### Amazon.com: Online Shopping for Electronics, Apparel, Computers, Books, DVDs & more

Candy-color totes

Dasein Women's Purses and Handbags Large Tote Shoulder Bag Top Handle Satchel Hobo Bag Briefcase
Calvin Klein Sonoma Reversible Novelty North/South Tote
GUESS Heidi Small Tote Set
Dasein Womens Top Handle Satchel Handbags Tote Purse Padlock Shoulder Bag

In a punchy hue, the schlep-everywhere bag becomes a true fashion accessory.


Today's deals under $25

See all deals

Everyday outdoor items in outlet store

See more

Tech accessories

Inateck 14-14.1 Inch Laptop Sleeve Case, Water Repellent Compatible with MacBook Pro 15''/Most 14-14.1 Inch Laptops-...
Sikye Metal Phone Ring Stand,360° Rotation Cellphone Stand Finger Grip Kickstand, Anti-Drop Finger Holder Universal...
TOOGOO(R) Rotating wooden USB 2.0 16GB Flash Storage High-speed Memory Stick
Scheam Samsung Galaxy S9 Plus Holster Case Flip, Cover Suit Premium Vertical Leather Pouch Sleeve Carrying Case...

Great finds for any budget


Best Sellers in Books

See more


Outlet deals on overstock items

See more


Low-cost jewelry & watches

Mnyycxen Mens Spinner Rings, Fidget Ring, Stainless Steel Band, Black, Silver, Multi, Size 6-12
Loweryeah Stainless Steel Quartz Watch Personality Porcelain Surface Steel Plate Table
Simple Fashion Men's Watch Stainless Roman Numeral Dial Steel Belt Watch
RechicGu Gold Indian Swirl Leaf Arrow Carved Feather Bracelet Armband Upper Arm Cuff Armlet Bridal

Great finds that won't break the bank

Shop by room

Bedroom furniture
Bedroom
Kitchen furniture
Kitchen
Small spaces solutions
Small spaces
Living room furniture
Living room

Décor and furniture for your favorite spaces

Give something unique

For her
For her
For him
For him
For little ones
For little ones
For pets
For pets

Shop Handmade gifts.


Best Sellers in Sports & Outdoors

See more

Gifts in bargain finds

See more


Best Sellers in Cell Phones & Accessories

See more

Customers also bought
#####EOF##### Financial Services - Amazon Web Services

Financial Services

Deliver innovative customer experiences, accelerate your time to market, and enable digital transformation with Amazon Web Services.

From capital markets and insurance, to global investment banks, payments, and emerging fintech startups, AWS helps customers innovate, modernize, and transform.  As a result, our customers speed go-to-market, deliver richer customer engagements and experiences, automate and strengthen security, and drive efficiencies, all while lowering costs.

Leading Financial Services companies like Capital One, FINRA, and Pacific Life are achieving better business outcomes with AWS' solutions including high-performance grid computing, data analytics, digital transformation, security and compliance, disaster recovery, and more.

AWS removes technology barriers, enabling customers to focus on what truly matters for their businesses.

Learn how AWS helps organizations deliver innovative customer experiences. (2:11)

What's new

Liberty Mutual

By using AWS, Liberty Mutual increased agility, shortened the time to market, from months to hours, to turn ideas into customer solutions, and got to outcomes faster.

Watch now »

Starling Bank

By using AWS, Starling Bank built a bank from scratch entirely in the cloud, while looking to transform consumer banking. AWS has the security, scalability, and industry reputation which was very useful for Starling Bank to secure their banking license.

Watch now »

Capital One

Capital One is a leading information-based technology company that is on a mission to help its customers succeed by bringing ingenuity, simplicity, and humanity to banking.

Learn more »

Future of Cloud Podcast

Listen to 11:FS Fintech Insider podcast featuring AWS customers and experts. 

Listen now »

Financial Services Insider Series

Gain key actionable insights through this thought leadership video series by hearing from our customers and AWS experts about how cloud technology is reshaping the Financial Services industry. 

Learn more »

Explore segments

Optimize, accelerate, and automate every aspect of your business – from customer service delivery to data-enabled risk management.

Page-Illo-Industry-Segment_Finance-Banking

Banking & Payments

Optimize, accelerate, and automate every aspect of your business – from customer service delivery to data-enabled risk management.

Learn more »

Page-Illo-Industry-Segment_Capitol-Market

Capital Markets

AWS enables organizations to innovate and transform to move faster, better service customers, and increase shareholder value.

Learn more »

Page-Illo-Industry-Segment_Insurance

Insurance

Enable an agile infrastructure to optimize and innovate your business, deepen customer relationships, and improve risk profiles with AWS.

Learn more »

Solutions

Grid Computing

Take compute-intensive workloads into the AWS Cloud to increase speed, scalability, and cost savings.

Learn more »

Data Analytics & Management

AWS has the largest suite of data migration, analytics, visualization, storage, and management tools.

Learn more »

Contact Center Optimization

Learn how financial institutions are transforming their customer contact while reducing costs and simplifying their technology stack with Amazon Connect.

Learn more »

Resilience and business continuity

Build highly resilient applications for financial institutions on AWS to meet mission-critical application recovery requirements.

Learn more »

Security & Compliance

AWS has been architected for organizations in the most security-sensitive and regulated industries, such as Financial Services.

Learn more »

Events

Amazon Web Services participates in a variety of industry conferences in addition to our own events. We're busy finalizing our 2019 plans.  Check back soon for more details.

Case studies

Leading financial services companies are innovating with Amazon Web Services.

View all case studies »

600x400_FINRA-Logo_Greyscale
600x400_Pacific-Life-Logo_Greyscale
600x400_Simple-Logo_Greyscale

Get started

Leading companies in the Financial Services industry are already using AWS. Contact our experts and start your own AWS Cloud journey today.

#####EOF##### Amazon.com: Click Here to Kill Everybody: Security and Survival in a Hyper-connected World (9780393608885): Bruce Schneier: Books
Click Here to Kill Everybody and millions of other books are available for instant access. view Kindle eBook | view Audible audiobook

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton
Buy New
$18.27
  • List Price: $27.95
  • Save: $9.68 (35%)

FREE Shipping
Get free shipping
Free 5-8 business-day shipping within the U.S. when you order $25 of eligible items sold or fulfilled by Amazon.
Or get 4-5 business-day shipping on this item for $5.99. (Prices may vary for AK and HI.)
Learn more about free shipping
on orders over $25—or get FREE Two-Day Shipping with Amazon Prime
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Click Here to Kill Everyb... has been added to your Cart
Other Sellers on Amazon
Add to Cart
$18.27
& FREE Shipping on eligible orders. Details
Sold by: B-mine llc
Add to Cart
$14.11
+ $4.16 shipping
Sold by: Faith's
Have one to sell? Sell on Amazon
Flip to back Flip to front
Listen Playing... Paused   You're listening to a sample of the Audible audio edition.
Learn more
See this image

Follow the Author

Something went wrong. Please try your request again later.


Click Here to Kill Everybody: Security and Survival in a Hyper-connected World Hardcover – September 4, 2018

4.1 out of 5 stars 28 customer reviews

See all 5 formats and editions Hide other formats and editions
Price
New from Used from
Kindle
Hardcover
$18.27
$14.11 $8.08

The Amazon Book Review
The Amazon Book Review
Author interviews, book reviews, editors' picks, and more. Read it now
click to open popover

Frequently bought together

  • Click Here to Kill Everybody: Security and Survival in a Hyper-connected World
  • +
  • Data and Goliath: The Hidden Battles to Collect Your Data and Control Your World
Total price: $33.10
Buy the selected items together

Editorial Reviews

Review

About the Author


Product details

  • Hardcover: 288 pages
  • Publisher: W. W. Norton & Company; 1 edition (September 4, 2018)
  • Language: English
  • ISBN-10: 0393608883
  • ISBN-13: 978-0393608885
  • Product Dimensions: 6.5 x 1.2 x 9.6 inches
  • Shipping Weight: 1.1 pounds (View shipping rates and policies)
  • Average Customer Review: 4.1 out of 5 stars 28 customer reviews
  • Amazon Best Sellers Rank: #28,427 in Books (See Top 100 in Books)
  • Would you like to tell us about a lower price?
    If you are a seller for this product, would you like to suggest updates through seller support?

NO_CONTENT_IN_FEATURE

Try the Kindle edition and experience these great reading features:

CLOSE
See Kindle Edition

28 customer reviews

4.1 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

October 9, 2018
Format: HardcoverVerified Purchase
27 people found this helpful
Comment Report abuse
November 11, 2018
Format: Kindle EditionVerified Purchase
5 people found this helpful
Comment Report abuse
September 18, 2018
Format: Kindle EditionVerified Purchase
7 people found this helpful
Comment Report abuse
December 6, 2018
Format: HardcoverVerified Purchase
2 people found this helpful
Comment Report abuse
November 3, 2018
Format: Kindle EditionVerified Purchase
3 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

Click Here to Kill Everybody: Security and Survival in a Hyper-connected World
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Click Here to Kill Everybody: Security and Survival in a Hyper-connected World
#####EOF##### AWS | FAQs

Select from the following list of Product and Technical FAQs. Browse through these FAQs to find answers to commonly raised questions. If you're a new customer of one of the services below, we encourage you to read through the relevant articles.

#####EOF##### Backup and Data Protection Solutions | Amazon Web Services

Backup & Restore

Build scalable, durable, and secure data-protection solutions with AWS

The exponential growth of data worldwide has made managing backups more difficult than ever before. With traditional methods such as tape libraries and secondary sites falling behind, many organizations are extending backup targets to the cloud. While the cloud offers better scalability, building cloud-enabled backup solutions requires careful consideration of existing IT investments, recovery objectives, and available resources.

This is where Amazon Web Services (AWS) can help. We offer the most storage services, data-transfer methods, and networking options to build solutions that protect your data with unmatched durability and security. Learn more about Benefits of AWS Backup, the AWS Partner Network for Storage & Backup, Use Cases, Customer Case Studies, and Evolving Backup into Archive & Disaster Recovery.

Learn about the benefits customers are realizing by working with AWS to extend backup targets to the cloud.

Benefits of Backing Up to the AWS Cloud

Data Durability

Protect backups with 99.999999999% data durability. Copies of all data uploaded to Amazon S3 and Amazon S3 Glacier are created and stored across at least three devices in a single AWS Region. Even when following best practices, on-premises capabilities cannot match AWS’ durability due to our global scale and security.

Flexibility & Scalability

Scale up your backup resources in minutes as data requirements change . With AWS, you no longer need to wait weeks-to-months to procure tapes, disks, and other IT resources to increase your storage infrastructure. This ability to scale on demand can improve operational flexibility, innovation, and business agility.

Cost Efficiencies

Spend efficiently with pay-as-you-go pricing, cost-management tools, data lifecycle policies, and the S3 Storage Classes, including S3 Standard-Infrequent Access, S3 One Zone-Infrequent Access, S3 Glacier, and S3 Glacier Deep Archive. With these capabilities, you can cost-effectively protect data in the cloud without sacrificing performance. Sending backups to AWS can be the first step in reducing total cost of ownership and your data center footprint.

Backup for All Data Types

Back up all data types with AWS. Our storage services for object (Amazon S3 and Amazon S3 Glacier), file (Amazon Elastic File System), and block (Amazon Elastic Block Storage) support industry-leading scalability, availability, durability, and security so your backups are protected and available when needed. Learn more »

Security & Compliance

Protect backups with a data center and network architecture built for the most security-sensitive organizations. Manage access, detect irregular activity, encrypt data, and perform audits with AWS Security services. AWS also maintains compliance programs to help you meet all of your regulatory requirements.

Data-Transfer Methods

Work with AWS to optimize data transfers over the Internet (Amazon Direct Connect and S3 Transfer Acceleration), move petabytes to exabytes of data offline (AWS Snowball, AWS Snowmobile, and AWS Snowball Edge), and deploy AWS Storage Gateway to connect on-premises operations to AWS. Learn more »

EBOOK

Backing Up to AWS
Learn more about protecting your growing data stores, while enhancing security and durability

Learn more about B&R AWS services and experiment with Tutorials, Projects, and Guides.

The AWS Partner Network for Storage & Backup

The AWS Partner Network (APN) is the largest community of cloud consulting and technology providers. All APN partners have proven technical expertise of the AWS platform and customer success with their products and services. AWS Storage Competency partners offer AWS-integrated storage solutions for primary storage, backup & restore, disaster recovery, and data archive. Working with these partners can help your organization (particularly if you're managing legacy infrastructure and applications) deploy capabilities that send data to the AWS Cloud for durable storage and protection.

Another customer resource is the AWS Marketplace, an online catalogue offering over 3,500 software listings from over 1,100 independent software vendors, where you can explore, purchase, and deploy off-the-shelf cloud storage solutions. All listed solutions support a variety of AWS storage services, and are ready for deployment and immediate use.

Learn how you can work with partners to back up data to AWS.

Common Backup Use Cases

Hybrid Cloud Backup

With cloud connectors and gateways, customers can begin backing up their on-premises data to the AWS Cloud for durable data protection.

Tape Replacement

Use AWS Storage Gateway to create virtual tape libraries and eliminate the responsibilities of overseeing procurement cycles and error-prone processes.

Database Backup

Many AWS database services (relational and non-relational) have built-in, automated backup capabilities to protect your data and applications. 

Data Lifecycle Management

Amazon S3 offers different storage classes to store less frequently accessed data at variable costs. Use lifecycle policies to automate tiering or do this on demand.

Global Data Resiliency

Amazon S3 offers cross-region replication to replicate data in other AWS Regions for compliance, security, disaster recovery, and other use cases.  

Archive & Compliance

Organizations with data-retention requirements can use Amazon S3, S3 Glacier, and S3 Glacier Deep Archive for low-cost, long-term storage that has built-in capabilities to enforce WORM controls.

Customer Case Studies

King County

King County uses AWS for long-term archiving and backup solutions.

Thomson Reuters

Thomson Reuters leverages Amazon S3 to store and protect permanent backups.

Unilever

Unliever uses Amazon S3 and Amazon EBS snapshots to protect backup data in the cloud.

Hess

Hess uses Amazon EBS snapshots to create nightly backups, and then stores database backups in Amazon S3 and the S3 Glacier storage class for long-term archiving.

Evolving Beyond Backup

Archive

Once backups are in the AWS Cloud, you can cost-effectively archive them. S3 Glacier and S3 Glacier Deep Archive are designed to deliver 99.99999999999% durability, have capabilities to meet compliance requirements related to data retention, and cost $0.004 per gigabyte per month and $0.00099 per gigabyte per month, respectively.

Learn more »

Disaster Recovery

Another benefit of having backup data in AWS is the access you have to cloud-native tools that can evolve your backup solution into one for disaster recovery. Use AWS services to rebuild on-premises environments and create resiliency against natural disasters and failures.

Learn more »

Get Started with AWS

icon1

Sign up for an AWS account

Instantly get access to the AWS Free Tier.
icon2

Learn with 10-minute tutorials

Explore and learn with simple tutorials.
icon3

Start building with AWS

Begin building with step-by-step guides to help you launch your AWS project.

For information on backup-related AWS services

Visit AWS Backup & Restore Services
Ready to build?
Get started with backup to AWS
Have more questions?
Contact us
#####EOF##### Amazon Web Services AWS – Server Hosting & Cloud Services

Entdecken Sie unsere Produkte

Der Motor für Kundeninnovationen

AWSMP_logo_new-RGB

Suchen. Kaufen. Bereitstellen.

AWS Marketplace ist ein digitaler Katalog mit Tausenden von Softwareangeboten unabhängiger Softwareanbieter, der das Finden, Testen, Kaufen und Bereitstellen von Software, die auf AWS läuft, erleichtert.
Weitere Informationen 

Entdecken Sie unsere Lösungen

60-machine-learning
Bauen Sie mit leistungsstarken Services und Plattformen sowie der umfangreichsten Unterstützung von Machine Learning-Frameworks weltweit.
60-analytics
Speichern, kategorisieren und analysieren Sie alle Ihre Daten sicher in einem zentralen Repository.
60-IoT
Ein System allgegenwärtiger Geräte, die eine Verbindung zwischen realer Welt und der Cloud bilden.
60-serverless
Möchten Sie Anwendungen und Services erstellen und ausführen, ohne sich über Server Gedanken machen zu müssen?
60-containers
Verpacken und implementieren Sie Anwendungen, die eine konsistente, portable Softwareumgebung bieten, sodass Anwendungen überall problemlos ausgeführt und skaliert werden können.
60-enterprise
Erstellen Sie eine ausgereifte Services, die speziell für die einzigartigen Sicherheits-, Compliance-, Datenschutz- und Governance-Anforderungen großer Unternehmen entwickelt wurden.
60-storage
Langlebige, kostengünstige Optionen für Backup, Disaster Recovery und Datenarchivierung im Petabyte-Bereich.
60-windows-workloads
Flexible, skalierbare Rechenkapazität für Microsoft-Anwendungen. Einfaches Verwalten und Sichern von Windows-Arbeitslasten.

Für höchste Ansprüche konzipiert

icon-security

Sicher

Umfassende Sicherheitsfunktionen für höchste Ansprüche.
icon-compliant

Konform

Umfassende Kontrollen, Auditing und breite Sicherheitsbescheinigungen
icon-hybrid

Hybrid

Erstellen Sie hybride Architekturen, die Ihre lokale Infrastruktur in die Cloud erweitern.
icon-scalable

Skalierbar

Sie können auf so viel oder wenig Kapazität wie benötigt zugreifen und Ihren Bedarf nach kurzfristiger Ankündigung wie gewünscht anpassen.

Erfahren Sie, wie unsere Kunden auf AWS aufbauen

Globales Netzwerk von AWS-Regionen

Die AWS Cloud ist in 61 Availability Zones innerhalb von 20 Regionen weltweit verfügbar, darüber hinaus sind 12 weitere Availability Zones sowie vier weitere Regionen für Bahrain, Kapstadt, Hongkong (SVZ) und Mailand geplant.
2019 Infra Map - PDX
Key_AZ

Region und Anzahl der Availability Zones

USA Ost
Nord-Virginia (6), Ohio (3)

USA West
Nordkalifornien (3), Oregon (4)

Asien-Pazifik
Mumbai (2), Seoul (2), Singapur (3), Sydney (3), Tokio (4), Osaka-Lokal (1)

Kanada
Zentral (2)

China
Peking (3), Ningxia (2)

Europa
Frankfurt (3), Irland (3), London (3), Paris (3), Stockholm (3)

Südamerika
São Paulo (3)

GovCloud (USA)
US-Ost (3), US-West (3)

Key_Coming-Soon

Neue Region (in Kürze verfügbar)

Bahrain

Kapstadt

Hongkong (SVZ)

Mailand

Weitere Informationen 
#####EOF##### Amazon Web Services (AWS) - Cloud Computing Services

Explore Our Products

Powering Customer Innovation

  • Enterprise Transformation
  • Predictive Analytics
  • Machine Learning
  • SERVERLESS
  • Gaming
  • ENTERPRISE APPLICATIONS
  • Enterprise Transformation
  • PI-C1_Logo

    Capital One Reimagines Banking Using AWS

    Learn how Capital One implemented its cloud-first strategy through education, long-term planning, and constant focus on customer needs.
    Learn More 
    PI-C1_Mobile_Step-1

    Focusing on Customers

    In 2014, Capital One had a fledgling private cloud capability and was also experimenting with AWS. In an effort to build the features its customers wanted as quickly as possible, the company chose to pursue AWS.

    PI-C1_Mobile_Step-2

    Doing the Hard Part First

    Security and compliance are critical to Capital One as a financial institution. To address these needs, Capital One built a cloud-risk framework and established a cloud-governance function before moving a single workload to AWS.

    PI-C1_Mobile_Step-3

    Education: Key to the Cloud

    Capital One offers a cloud training program to engineers who work directly on AWS as well as non-technical stakeholders who need to be able to advocate for the power of cloud computing. The company now ranks in the top three of all enterprises globally for AWS certifications held by employees.

    PI-C1_Mobile_Step-4

    Realizing the Benefits of the Cloud

    Using AWS, Capital One brings new products to market in weeks instead of months or years, uses machine learning to improve customer experience, and attracts top developers and engineers—all of which help the company achieve its most important goal: creating great experiences for its customers.

  • Predictive Analytics
  • F1-Insights-logo-power-by-AWS

    Formula One Group Uses Amazon SageMaker to Optimize Racing

    Learn how Formula 1 uses Amazon SageMaker and other AWS services to optimize racing decisions and improve fan experience.
    Learn More 
    PI-F1-1-mobile-beginning-a-transformation-ending

    Beginning a Transformation

    Formula One Group is moving most of its infrastructure from on-premises data centers to AWS and standardizing on AWS machine-learning services—including Amazon SageMaker.

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    Optimizing Racing with Machine Learning

    Using historical race data collected from cars over the past 65 years, Formula 1 data scientists are training deep-learning models that make race predictions and help teams optimize mid-race decisions. The models can predict when teams should pit their cars, determine the best timing for changing tires, and evaluate how drivers are performing.

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    Bringing Fans onto the Track

    Formula 1 then uses AWS data streaming, analytics, and media services to deliver insights about driver decisions and car performance to its more than 500 million fans.

    PI-F1-4-mobile-building-for-the-future-ending

    Building for the Future

    Because Formula 1 runs its high-performance computing workloads in a scalable environment on AWS, the organization can innovate on the Formula 1 racing experience, car design, and more without worrying about capacity.

  • Machine Learning
  • Logo_Statcast-AI

    MLB Chooses AWS as Official Machine Learning Provider

    Learn How America’s Professional Baseball League Brings Meaning to Statistics Using AWS Machine Learning
    Learn More 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    A Foundation for Deep Learning

    MLB has been collecting statistical data on its players and clubs for decades, and in 2015 it started using AWS to collect and distribute game-day stats to enhance the fan experience.

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    Empowering Developers

    By using Amazon Sagemaker, MLB is empowering its developers and data scientists to quickly and easily build, train, and deploy machine-learning models at scale.

    PI-MLB-3-Lightening the Load-ending stage

    Lightening the Load

    These models help MLB eliminate manual, time-intensive processes associated with recordkeeping and statistics, like scorekeeping, capturing game notes, and classifying pitches.

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    Personalizing the Game

    MLB plans to work with the Amazon ML Solutions Lab to continue improving Statcast—its tracking technology that analyzes player performance—including testing accuracy of pitch predictions and creating personalized viewer experiences.

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    A Home Run with Artificial Intelligence

    MLB will continue to innovate using artificial intelligence. The organization plans to use Amazon Comprehend to build a language model that could create scripts for live games that simulate iconic announcers.

  • SERVERLESS
  • Matson-logo

    Matson Operates Its Global Shipping and Logistics Businesses on AWS

    Learn how Matson is using AWS to drive innovation and world-class customer service, while achieving operational reliability, security, and infrastructure cost savings.
    Learn More 
    PI-Matson-Mobile_Step-1

    Real-Time Container Tracking

    Matson built a flagship mobile application for global container tracking that allows customers to perform real-time tracking of their freight shipments. Other valuable features in the application include interactive vessel schedule searching, location-based port map lookups, and live gate-camera feeds.

    PI-Matson-Mobile_Step-2

    Mobile Device Access

    All mobile devices access AWS via Amazon API Gateway. This provides highly available edge located endpoints for access into resources within Matson's existing virtual private clouds.

    PI-Matson-Mobile_Step-3

    Serverless Computing

    The AWS Lambda functions are designed using the microservices pattern and are modeled around specific ocean-based business contexts, such as shipment tracking and vessel schedules. 

    PI-Matson-Mobile_Step-4

    Database Configuration and Storage

    Amazon DynamoDB manages configuration as well as user-feedback configuration and user-feedback notifications sent from mobile devices. DynamoDB Streams provides real-time notifications to Matson's customer service team. 

    PI-Matson-Mobile_Step-5

    Data Monitoring and Alerts

    Matson's customers rely on accurate, up-to-the-minute container tracking and vessel status information. Monitoring and alerting of system events is achieved by using Amazon CloudWatch, Amazon SNS, Amazon SES, AWS Lambda, and CloudWatch Logs. 

    PI-Matson-Mobile_Step-6

    End-to-End Serverless Application

    Matson can now offer customers an end-to-end serverless application to help track their shipments, and has no infrastructure to maintain.

  • Gaming
  • PI-Epic_Logo_Final
    Epic Games Uses AWS to Power Worldwide Game Fortnite
    Learn how Epic Games uses AWS to deliver Fortnite to more than 200 million players around the world.
    Learn More 
    PI-Epic-Mobile_Step-1

    Building a Foundation on the Cloud

    Epic Games has been using AWS since 2012 and is now all in on the AWS Cloud, running its worldwide game-server fleet, backend platform systems, databases, websites, analytics pipeline, and processing systems on AWS.

    PI-Epic-Mobile_Step-2

    An Overnight Sensation

    In 2017, Epic Games launched Fortnite, a cross-platform, multiplayer game that became an overnight sensation. In its first year, Fortnite’s user base grew by more than 100 times to 200 million players worldwide.

    PI-Epic-Mobile_Step-3

    Pushing the Boundaries of Scale

    AWS is integral to the success of Fortnite. Using AWS, Epic Games hosts in-game events with hundreds of millions of invited users without worrying about capacity, ingests 125 million events per minute into its analytics pipeline, and handles data-warehouse growth of more than 5 PB per month.

    PI-Epic-Mobile_Step-4

    Providing the Best Gaming Experience

    Using AWS, Epic Games is always improving the experience of its players and offering new, exciting games and game elements. The company plans to expand its use of AWS services in the future, including machine learning and containerized services.

  • ENTERPRISE APPLICATIONS
  • BPP_ylw_logo

    BP Improves Effectiveness and Gains Cost Agility and Speed for Its Critical Business Apps

    See how BP simplified and modernized its suite of SAP applications, improving user experience while gaining cost agility and enhanced performance.
    Learn More 
    PI-BP-Mobile_Step-1

    Managing Critical Business Apps

    BP's IT organization manages SAP applications used by thousands of employees worldwide for supply chain, procurement, finance, and more. 

    PI-BP-Mobile_Step-2

    Improving Speed & Cost Agility

    To improve speed and gain cost agility, BP used Amazon EC2 to migrate these core business apps to the cloud. In addition, the team built EC2 X1 instances to increase scale and to power their real-time analytics.

    PI-BP-Mobile_Step-3

    Increasing Performance

    The team can now stand up systems on demand in hours instead of weeks or months. BP is seeing performance increases across the board, including a 40 percent speed improvement for the Lubricants ERP system. 

    PI-BP-Mobile_Step-4

    Securing Data

    As part of its cloud migration, BP reset its security standards using AWS Config, AWS Identity and Access Management (IAM), Amazon CloudWatch, and AWS Trusted Advisor. These new standards helped BP to develop a secure framework for operating its IT organization.

AWSMP_logo_new-RGB

Find. Buy. Deploy.

AWS Marketplace is a digital catalog with thousands of software listings from independent software vendors that make it easy to find, test, buy, and deploy software that runs on AWS.
Learn More 

Explore Our Solutions

60-machine-learning
Build with powerful services and platforms, and the broadest machine learning framework support anywhere.
60-analytics
Securely store, categorize, and analyze all your data in one, centralized repository.
60-IoT
A system of ubiquitous devices connecting the physical world to the cloud.
60-serverless
Build and run applications and services without thinking about servers.
60-containers
Package and deploy applications that are lightweight and provide a consistent, portable software environment for applications to easily run and scale anywhere.
60-enterprise
Build with a mature set of services specifically designed for the unique security, compliance, privacy, and governance requirements of large organizations.
60-storage
Durable, cost-effective options for backup, disaster recovery, and data archiving at petabyte scale.
60-windows-workloads
Flexible, scalable compute capacity for Microsoft applications. Easily manage and secure Windows workloads.

Engineered for the Most Demanding Requirements

icon-security

Secure

Comprehensive security capabilities to satisfy the most demanding requirements.
icon-compliant

Compliant

Rich controls, auditing and broad security accreditations.
icon-hybrid

Hybrid

Build hybrid architectures that extend your on-premises infrastructure to the Cloud.
icon-scalable

Scalable

Access as much or as little as you need, and scale up and down as required with only a few minutes notice.

Learn How Our Customers Build on AWS

Global Network of AWS Regions

The AWS Cloud spans 61 Availability Zones within 20 geographic Regions around the world, with announced plans for 15 more Availability Zones and five more regions in Bahrain, Cape Town, Hong Kong SAR, Jakarta, and Milan.
Global Infrastructure Map-Jakarta and Hong Kong_update
Key_AZ

Regions & Number of Availability Zones

US East
N. Virginia (6), Ohio (3)

US West
N. California (3), Oregon (4)

Asia Pacific
Mumbai (2), Seoul (2), Singapore (3), Sydney (3), Tokyo (4), Osaka-Local (1)

Canada
Central (2)

China
Beijing (2), Ningxia (3)

Europe
Frankfurt (3), Ireland (3), London (3), Paris (3), Stockholm (3)

South America
São Paulo (3)

GovCloud (US)
US-East (3), US-West (3)

Key_Coming-Soon

New Region (Coming Soon)

Bahrain

Cape Town

Hong Kong SAR

Jakarta

Milan

Learn More 
#####EOF##### AWS Articles

The Articles and Tutorials section features in-depth documents designed to give practical help to developers working with AWS. They have been created by members of the AWS developer community or the Amazon Team and give structured examples, analysis, tips, tricks and guidelines based on real usage of AWS services.

#####EOF#####
#####EOF##### Amazon Web Services (AWS) – Dịch vụ điện toán đám mây

Tìm hiểu các sản phẩm cá»§a chúng tôi

Machine Learning
Quản lý và quản trị
Bảo mật, định danh và tuân thá»§

Cung cấp Giải pháp sáng tạo cho khách hàng

AWSMP_logo_new-RGB

Tìm kiếm. Mua sắm. Triển khai.

AWS Marketplace là danh mục kỹ thuật số với danh sách hàng nghìn sản phẩm từ các nhà cung cấp phần mềm độc lập để giúp dễ dàng tìm kiếm, thá»­ nghiệm, mua sắm và triển khai phần mềm chạy trên AWS.
Tìm hiểu thêm 

Khám phá Giải pháp cá»§a chúng tôi

60-machine-learning
Xây dá»±ng bằng các dịch vụ và nền tảng mạnh mẽ, và sá»± hỗ trợ cá»§a hệ thống khung machine learning rộng lớn nhất ở bất cứ nÆ¡i nào.
60-analytics
Lưu trữ, phân loại và phân tích một cách bảo mật toàn bộ dữ liệu cá»§a bạn trong một kho lưu trữ tập trung.
60-IoT
Một hệ thống các thiết bị có mặt khắp nÆ¡i kết nối thế giới thá»±c với đám mây.
60-serverless
Dá»±ng và chạy ứng dụng và dịch vụ mà không cần phải bận tâm đến máy chá»§.
60-containers
Đóng gói và triển khai ứng dụng hạng nhẹ và cung cấp môi trường phần mềm ổn định, di động để có thể chạy ứng dụng một cách dễ dàng và với quy mô lớn ở bất cứ nÆ¡i nào.
60-enterprise
Xây dá»±ng bằng một tập hợp các dịch vụ hoàn thiện được thiết kế riêng cho các yêu cầu bảo mật, tuân thá»§, riêng tư và quản trị đặc thù cá»§a các tổ chức lớn.
60-storage
Các lá»±a chọn có độ bền cao, tiết kiệm chi phí để sao lưu, phục hồi sau thảm họa và lưu trữ dữ liệu ở quy mô petabyte.
60-windows-workloads
Công suất điện toán có quy mô linh hoạt cho các ứng dụng Microsoft. Dễ dàng quản lý và bảo mật khối lượng công việc trên Windows.

Được xây dá»±ng để đáp ứng những yêu cầu khắt khe nhất

icon-security

Bảo mật

Khả năng bảo mật toàn diện để đáp ứng các yêu cầu khắt khe nhất.
icon-compliant

Tuân thá»§

Khả năng kiểm soát đa dạng, nhiều chứng nhận kiểm toán và bảo mật được áp dụng rộng rãi.
icon-hybrid

Lai

Xây dá»±ng kiến trúc lai giúp mở rộng cÆ¡ sở hạ tầng tại chỗ cá»§a bạn lên Đám mây.
icon-scalable

Có khả năng mở rộng

Truy cập tùy theo nhu cầu cá»§a bạn, tăng và giảm quy mô theo yêu cầu với thông báo chỉ trong vài phút.

Tìm hiểu cách khách hàng cá»§a chúng tôi xây dá»±ng trên AWS

Mạng toàn cầu cá»§a các Khu vá»±c AWS

Đám mây AWS trải rộng trên 61 Vùng sẵn sàng tại 20 khu vá»±c địa lý trên khắp thế giới, với các kế hoạch đã thông báo cho thêm 12 Vùng sẵn sàng và thêm bốn Khu vá»±c AWS khác tại Bahrain, Cape Town, Đặc khu hành chính Hồng Kông và Milan.
2019 Infra Map - PDX
Key_AZ

Khu vá»±c và số lượng vùng sẵn sàng

Miền Đông Hoa Kỳ
Bắc Virginia (6), Ohio (3)

Miền Tây Hoa Kỳ
Phía Bắc California (3), Oregon (4)

Châu Á Thái Bình Dương
Mumbai (2), Seoul (2), Singapore (3), Sydney (3), Tokyo (4), khu vá»±c Osaka (1)

Canada
Miền Trung (2)

Trung Quốc
Bắc Kinh (3), Ninh Hạ (2)

Châu Âu
Frankfurt (3), Ai-len (3), London (3), Paris (3), Stockholm (3)

Nam Mỹ
São Paulo (3)

GovCloud (US)
Miền Đông Hoa Kỳ (3), Miền Tây Hoa Kỳ (3)

Key_Coming-Soon

Khu vực mới (Sắp triển khai)

Bahrain

Cape Town

Đặc khu hành chính Hồng Kông

Milan

Tìm hiểu thêm 
#####EOF##### Applied Network Security Monitoring: Collection, Detection, and Analysis: Chris Sanders, Jason Smith: 8601405645487: Amazon.com: Books
Applied Network Security Monitoring and millions of other books are available for Amazon Kindle. Learn more

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Applied Network Security Monitoring: Collection, Detection, and Analysis 1st Edition

4.8 out of 5 stars 35 customer reviews
ISBN-13: 978-0124172081
ISBN-10: 0124172083
Why is ISBN important?
ISBN
This bar-code number lets you verify that you're getting exactly the right version or edition of a book. The 13-digit and 10-digit formats both work.
Scan an ISBN with your phone
Use the Amazon App to scan ISBNs and compare prices.
Sell yours for a Gift Card
We'll buy it for up to $14.0
Learn More
Trade in now
Have one to sell? Sell on Amazon
<Embed>
Buy new
$29.61
Only 2 left in stock - order soon.
Ships from and sold by Galaxy_Books.
List Price: $49.95
Save: $20.34 (41%)
$29.61 + Free Shipping
Price
New from Used from
Kindle
Paperback
$29.61
$29.61 $24.13
Free Two-Day Shipping for College Students with Prime Student Free Two-Day Shipping for College Students with Amazon Student


Amazon First Reads | Editors' picks at exclusive prices
click to open popover

Frequently bought together

  • Applied Network Security Monitoring: Collection, Detection, and Analysis
  • +
  • Network Security Through Data Analysis: From Data to Action
  • +
  • Hacking Exposed 7: Network Security Secrets and Solutions
Total price: $96.40
Buy the selected items together

Editorial Reviews

Review

About the Author


Product details

  • Paperback: 496 pages
  • Publisher: Syngress; 1 edition (December 19, 2013)
  • Language: English
  • ISBN-10: 0124172083
  • ISBN-13: 978-0124172081
  • Product Dimensions: 7.5 x 1.1 x 9.2 inches
  • Shipping Weight: 2.3 pounds (View shipping rates and policies)
  • Average Customer Review: 4.8 out of 5 stars 35 customer reviews
  • Amazon Best Sellers Rank: #64,134 in Books (See Top 100 in Books)
  • Would you like to tell us about a lower price?
    If you are a seller for this product, would you like to suggest updates through seller support?

NO_CONTENT_IN_FEATURE

Try the Kindle edition and experience these great reading features:

CLOSE
See Kindle Edition

35 customer reviews

4.8 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

September 1, 2017
Format: Kindle EditionVerified Purchase
2 people found this helpful
Comment Report abuse
January 28, 2018
Format: PaperbackVerified Purchase
3 people found this helpful
Comment Report abuse
March 28, 2014
Format: Kindle EditionVerified Purchase
4 people found this helpful
Comment Report abuse
March 18, 2018
Format: Kindle EditionVerified Purchase
One person found this helpful
Comment Report abuse
May 26, 2015
Format: PaperbackVerified Purchase
2 people found this helpful
Comment Report abuse
April 20, 2017
Format: PaperbackVerified Purchase
2 people found this helpful
Comment Report abuse
January 17, 2014
Format: PaperbackVerified Purchase
2 people found this helpful
Comment Report abuse
February 2, 2014
Format: Kindle EditionVerified Purchase
7 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

Applied Network Security Monitoring: Collection, Detection, and Analysis
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Applied Network Security Monitoring: Collection, Detection, and Analysis
Pages with related products. See and discover other items: incident response, data analysis, computer network, computer networks, network analysis, network science
#####EOF#####
#####EOF##### 클라우드 서비스 | 클라우드 컴퓨팅 솔루션| Amazon Web Services

AWS 제품 살펴보기

컴퓨팅
기계 학습
관리 및 거버넌스
보안, 자격 증명 및 규정 준수

고객 혁신 지원

AWSMP_logo_new-RGB

검색. 구매. 배포.

AWS Marketplace는 AWS에서 실행되는 소프트웨어를 쉽게 검색, 테스트, 구매 및 배포할 수 있도록 수천 개의 Independent Software Vendor(ISV) 소프트웨어 제품 목록을 제공하는 디지털 카탈로그입니다.
자세히 알아보기 

AWS 솔루션 살펴보기

60-machine-learning
강력한 서비스와 플랫폼으로 구축하고, 어디에서나 가장 광범위한 기계 학습 프레임워크를 지원하십시오.
60-analytics
하나의 중앙 집중식 리포지토리에서 모든 데이터를 안전하게 저장, 분류 및 분석합니다.
60-IoT
물리적 세계를 클라우드에 연결하는 유비쿼터스 디바이스 시스템.
60-serverless
서버에 대한 고민 없이 애플리케이션과 서비스를 구축하고 실행합니다.
60-containers
경량 애플리케이션을 패키징 및 배포하고 애플리케이션을 어디에서든 쉽게 실행하고 확장할 수 있도록 일관된 이동식 소프트웨어 환경을 제공합니다.
60-enterprise
대기업의 고유한 보안, 규정 준수, 프라이버시 및 거버넌스 요구 사항에 맞춰 특별히 설계된 완성된 서비스 세트를 사용해 구축하십시오.
60-storage
페타바이트 규모의 백업, 재해 복구 및 데이터 아카이브를 위한 안정적이고 비용 효율적인 옵션.
60-windows-workloads
Microsoft 애플리케이션을 위한 유연하고 확장 가능한 컴퓨팅 파워. Windows 워크로드를 손쉽게 관리 및 보호합니다.

가장 까다로운 요구 사항에 맞게 설계

icon-security

보안

가장 까다로운 요구 사항을 충족하는 포괄적인 보안 기능.
icon-compliant

규정 준수

강화된 제어 기능, 감사 및 광범위한 보안 승인
icon-hybrid

하이브리드

온프레미스 인프라를 클라우드로 확장하는 하이브리드 아키텍처 구축.
icon-scalable

확장성

필요한 만큼의 리소스에 액세스하고 필요에 따라 몇 분 만에 확장 또는 축소.

고객의 AWS 구축 사례 알아보기

AWS 리전의 글로벌 네트워크

AWS 클라우드는 전 세계 20개의 지리적 리전 내에 61개의 가용 영역을 운영하고 있으며, 앞으로 바레인, 케이프타운, 홍콩 SAR 및 밀라노에 4개의 리전과 12개의 가용 영역을 추가할 계획입니다.
2019 Infra Map - PDX
Key_AZ

리전 및 가용 영역 수

미국 동부
버지니아 북부(6), 오하이오(3)

미국 서부
캘리포니아 북부(3), 오레곤(4)

아시아 태평양
뭄바이(2), 서울(2), 싱가포르(3), 시드니(3), 도쿄(4), 오사카 로컬(1)

캐나다
중부(2)

중국
베이징(2), 닝샤(3)

유럽
프랑크푸르트(3), 아일랜드(3), 런던(3), 파리(3), 스톡홀름(3)

남아메리카
상파울루(3)

GovCloud(US)
US-East(3), US-West(3)

Key_Coming-Soon

새로운 리전(제공 예정)

바레인

케이프타운

홍콩 SAR

밀라노

자세히 알아보기 
#####EOF##### Amazon Web Services (AWS) – 雲端運算服務

探索我們的產品

機器學習
管理與管控

支援客戶創新

AWSMP_logo_new-RGB

尋找。購買。部署。

AWS Marketplace 是包含獨立軟體開發廠商數千種軟體產品的數位型錄,可讓您輕鬆地尋找、測試、購買和部署在 AWS 上執行的軟體。
進一步了解 

探索我們的解決方案

60-machine-learning
在任何地方建立功能強大的服務和平台,以及廣泛的機器學習架構支援。
60-analytics
在一個集中化的儲存庫安全地存放、分類和分析所有資料。
60-IoT
由無所不在的裝置組成的系統,將真實世界連接至雲端。
60-serverless
建立和執行應用程式與服務,無須擔心伺服器。
60-containers
封裝和部署輕量的應用程式,並為應用程式提供一致的可攜式軟體環境,可在任何地方輕鬆執行及擴展。
60-enterprise
使用專為大型組織獨特的安全性、合規、隱私權和管控需求所設計的一套完善服務進行建置。
60-storage
耐用且符合經濟效益的選項,可用於備份、災難復原,以及存檔 PB 規模的資料。
60-windows-workloads
適用於 Microsoft 應用程式的彈性、可擴展運算容量。輕鬆地管理和保護 Windows 工作負載。

針對最高要求設計

icon-security

安全

具備廣泛的安全功能,可滿足最高的要求。
icon-compliant

合規

豐富的控制、審核和廣泛的安全認證。
icon-hybrid

混合

建立混合式架構,將現場部署基礎設施延伸到雲端。
icon-scalable

可擴展性

視需要存取最多或最少的資源,並根據需求擴展和縮減,一切只要幾分鐘就能完成。

了解我們的客戶如何在 AWS 上進行建置

AWS 區域全球網路

AWS 雲端遍及全球 20 個地理區域內的 61 個可用區域,而且已宣布計劃在巴林、開普敦、香港特別行政區和米蘭增加 12 個可用區域和四個區域。
2019 Infra Map - PDX
Key_AZ

區域及可用區域數目

美國東部
維吉尼亞北部 (6)、俄亥俄 (3)

美國西部
加利佛尼亞北部 (3)、奧勒岡 (4)

亞太區域
孟買 (2)、首爾 (2)、新加坡 (3)、雪梨 (3)、東京 (4)、大阪 – 當地 (1)

加拿大
中部 (2)

中國
北京 (2)、寧夏 (3)

歐洲
法蘭克福 (3)、愛爾蘭 (3)、倫敦 (3)、巴黎 (3)、斯德哥爾摩 (3)

南美洲
聖保羅 (3)

GovCloud (US)
US-East (3)、US-West (3)

Key_Coming-Soon

新區域 (即將推出)

巴林

開普敦

香港特別行政區

米蘭

進一步了解 
#####EOF##### Amazon.com: [Only Charging] Multi USB Cable,Chafon 6 in 1 USB Multi Charge Cable with Type C,Mini USB,2 Micro USB Connectors for Charging-2 Pack: Cell Phones & Accessories

Loading recommendations for this item...

Added to Cart

Not Added

Item is in your Cart

View Cart

Not Added

There was a problem adding this item to Cart. Please try again later.
Sorry, we're having trouble showing recommendations right now. Please try again later.
Continue shopping
$14.99

FREE Shipping
Get free shipping
Free 5-8 business-day shipping within the U.S. when you order $25 of eligible items sold or fulfilled by Amazon.
Or get 4-5 business-day shipping on this item for $5.99. (Prices may vary for AK and HI.)
Learn more about free shipping
on orders over $25—or get FREE Two-Day Shipping with Amazon Prime
In Stock.
Sold by ChafonDirect and Fulfilled by Amazon. Gift-wrap available.
[Only Charging] Multi USB... has been added to your Cart

Have one to sell? Sell on Amazon

[Only Charging] Multi USB Cable,Chafon 6 in 1 USB Multi Charge Cable with Type C,Mini USB,2 Micro USB Connectors for Charging-2 Pack

by CHAFON
4.3 out of 5 stars 115 customer reviews
Amazon's Choice recommends highly rated, well-priced products available to ship immediately.
Amazon's Choice for "4 in 1 charging cable"

Price: $14.99
FREE Shipping
Get free shipping
Free 5-8 business-day shipping within the U.S. when you order $25 of eligible items sold or fulfilled by Amazon.
Or get 4-5 business-day shipping on this item for $5.99. (Prices may vary for AK and HI.)
Learn more about free shipping
on orders over $25—or get FREE Two-Day Shipping with Amazon Prime
2 Pack Balck
    This fits your .
  • Make sure this fits by entering your model number.
  • ★Versatility: Including 1 USB C,2 Micro USB,1 Mini USB,1 USB A 2.0 a life saving tool, pretty gift for your family and friends.[Please note: This cable is Not support Sync Data and quick charge.]
  • ★Convenience: It is a handy and portable cable. Perfect all-in-one Charging Solution for on-the-go People, travellers or road warrior.Easily fits into your pocket or hold it in your hands.
  • ★USB Type C : Add a USB Type-C function.Its design helps you insert the connector in a right way all the time.Adapting the latest device.
  • ★Time-saving : Charging different digital devices with different plug at the same time.
  • ★Chafon’s Warranty: 100% Satisfaction&100% Performance for your life.Backed by ChafonDirect 1-year Limited Warranty.

Frequently bought together

  • [Only Charging] Multi USB Cable,Chafon 6 in 1 USB Multi Charge Cable with Type C,Mini USB,2 Micro USB Connectors for Charging-2 Pack
  • +
  • Anker PowerCore 10000, One of The Smallest and Lightest 10000mAh External Batteries, Ultra-Compact, High-Speed Charging Technology Power Bank for iPhone, Samsung Galaxy and More
  • +
  • Vanja USB Type-C Card Reader, Micro USB OTG 2.0 Portable Memory Card Reader Adapter for SDXC, SDHC, SD, MMC, RS-MMC, Micro SDXC, Micro SD, Micro SDHC Card
Total price: $55.97
Buy the selected items together

Special offers and product promotions

Color: 2 Pack Balck
  • Save 15% each on Qualifying items offered by ChafonDirect when you purchase 50 or more. Enter code 6R5XV3LX at checkout. Here's how (restrictions apply)
  • Save 8% on 3 in 1 Retractable Cable(2 versions) when you purchase 1 or more 6 in 1 cable offered by ChafonDirect. Enter code 3A3O5SGG at checkout. Here's how (restrictions apply)
  • save 5% on qualifying items when you purchase 2, save 10% on qualifying items when you purchase 5 or more offered by ChafonDirect. Enter code HL3AIACG at checkout. Here's how (restrictions apply)

Have a question?

Find answers in product info, Q&As, reviews

Please make sure that you are posting in the form of a question.

Don't see what you're looking for?
There was a problem completing your request. Please try your search again later.
All Product Information Customer Q&A's Customer Reviews

Product Description

Premium 6 in 1 Multi Charge Cable

Multi usb charging cable multi device charging

Excellent well made and conceived !

The nice concept of 6 in 1 comes from our daily charging cable getting tangled or forgetting, it is the perfect solution of  all in one compact charge cable.

Multi cord is widely used in charging for today's digital devices, like Android, USB-C smartphones, tablets, MP3 players, PDAs, digital cameras/camcorders, bluetooth headphones, wireless speaker, e-readers, external battery chargers, power bank etc.

Chafon CF62 helps you maximize your performance and convenient when charging.

Super Convenient

Multi usb charging cable multi device charging

An important part of your electronics kit

Universal Use Convenience that no need to

carry many cables when you are in a car, home,

workplace or in travelling, perfect travel charger.

--Weight: 24g

--Item Length: 7.9''

--Max working length: 12.6''

Only for Charging

Multi usb charging cable multi device charging

6-in-1 Multifunction Charger Cable:

It includes 1x USB C cable, 2x Micro USB,1x Mini USB,1x USB 2.0 A.

How to use

Simply connect the USB 2.0 A adapter end into a power source,

such as power bank,usb hub,wall adapter,car charger and

corresponding adapter to your devices (Max 5 devices) to charge.

MAKE YOU A HERO!

Multi usb charging cable multi device charging

Charge it from wall adapter

Charge from a powerful USB charger[above 2A current], or the charging rate would be very low when charging several devices simultaneously.

Multi usb charging cable multi device charging

Charge it from PC

  • Not support fast/quick charge
  • Do not suitable for thick phone case, if the cable not charge your device,please check whether equipped a thick Case.

High-quality Copper Wire

Multi Charging cables individual at 2A Maximum charging speed,the cable ensures charging speed and durable material help extend the life of the cable.


Compare with similar items


[Only Charging] Multi USB Cable,Chafon 6 in 1 USB Multi Charge Cable with Type C,Mini USB,2 Micro USB Connectors for Charging-2 Pack
SDBAUX Multi USB Charger Cable Retractable 2Pack 4ft 3 in 1 Multiple Charging Cord Adapter with Mini Type C Micro USB Port Connectors Compatible with Cell Phones Tablets Universal Use (Charging Only)
eLUUGIE 3 Packs Short 30cm Multi USB Charging Cable Fast Charger Cord 3 in 1 USB Type C, Micro USB and Lightning Connectors for Samsung S8 S7, Android, Apple iPhone 5,5s,5c,6,6s,7 (Silver)
Multi Charging Cable,IVVO 4 in 1 Multiple USB Cable Charger Adapter Connector with Type C/Mini/Micro USB Ports Compatible with Phone 7 7 Plus, Nexus 6P/5X, OnePlus 3, LG G5 and More
2 pack Multi charging cable by Trendsetter | 3 in 1 Nylon Braided Multiple USB Fast Charger Cord 3ft(1m) with Micro USB / Type C Compatible For Phone 7/7 Plus/Galaxy S8 and more (2 pack-Silver)
Multi Charger Cable 2 Pack IVVO 4 in 1 Multiple USB Charging Cord Adapter with Micro/Type C/Mini USB Ports for Phone 7 7 Plus,iPad, Galaxy S8, Android and More
Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart
Customer Rating 4 out of 5 stars (115) 4 out of 5 stars (61) 4 out of 5 stars (47) 4 out of 5 stars (162) 4 out of 5 stars (409) 4 out of 5 stars (56)
Price $14.99 $11.99 $14.99 $7.85 $12.99 $10.85
Shipping FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25
Sold By ChafonDirect SDBAUX Dragon-Service IVVO Bossky Electronic Technology IVVO
Compatible Devices motorola moto g, oneplus two, samsung galaxy note 4, apple iphone 4s, lumia 950 xl, lg nexus 4, apple iphone 6s, apple iphone 5s, samsung galaxy s7, samsung galaxy s5, samsung galaxy s3, samsung galaxy s4, huawei nexus 6p, apple iphone 6 plus, nokia lumia 950, htc one s, samsung galaxy note 3, samsung galaxy note 2, apple iphone 5c lg nexus 5 iPhone 7 Plus / 7 / 6s Plus / 6s / 6 Plus / 6 / 5s / 5c / 5 /, iPad Pro / iPad Air / Air 2 / iPad mini / mini 2 / mini 4 / iPad 4th gen / iPod Touch 5th gen / iPod nano 7th gen and Beats Pill+ ,, Micro USB for Samsung Galaxy S7/6/5,, Samsung Galaxy Note 5/4/3/2, HTC, SONY, Most Android phones; PSP, digital camera, MP3/MP4, kindle fire and laptop.Type-C for Lumia 950, Lumia 950 XL, OnePlus 2, Nokia N1, Lenovo Zuk Z1, Nexus 5X, Nexus 6P, and Pixel C., Samsung Galaxy s8 s8 plus iphone 7 iphone 7 plus iphone 6 6 plus se 5 5s 4s, samsung s6 s5, iPad Air 2 Mini 3 LG BlackBerry, Nexus 5P 6X OnePlus 2 3, Nexus HTC Motorola Nokia, Lumia 950 Lumia 950XL ZUK Z1 apple iphone 6 plus, blackberry z10, motorola moto g, apple iphone 6s plus, huawei nexus 6p, lg nexus 4, apple iphone 6s, apple iphone 5c, apple iphone 5s apple iphone 5, samsung galaxy s3, apple iphone 6, samsung galaxy s4, huawei nexus 6p, apple iphone 6 plus, lg nexus 4, apple iphone 5c, apple iphone 5s, motorola moto g

Product information

Color:2 Pack Balck

Feedback

If you are a seller for this product, would you like to suggest updates through seller support?
Would you like to tell us about a lower price?

Important information

Seller Warranty Description
1 year warranty

Customer Questions & Answers

115 customer reviews

4.3 out of 5 stars

By customer groups & interests
Digital Photography
4.4
Watch Brands
4.2

Review this product

Share your thoughts with other customers

Read reviews that mention

November 29, 2018
Color: 2 Pack BalckVerified Purchase
June 10, 2018
Color: 2 Pack BalckVerified Purchase
One person found this helpful
Comment Report abuse
January 14, 2019
Color: 2 Pack BalckVerified Purchase
October 13, 2018
Color: 2 Pack BalckVerified Purchase
June 10, 2017
Color: 2 Pack BalckVerified Purchase
One person found this helpful
Comment Report abuse
November 10, 2017
Color: 2 Pack BalckVerified Purchase
November 4, 2017
Color: 2 Pack BalckVerified Purchase
December 14, 2018
Color: 2 Pack BalckVerified Purchase

Set up an Amazon Giveaway

[Only Charging] Multi USB Cable,Chafon 6 in 1 USB Multi Charge Cable with Type C,Mini USB,2 Micro USB Connectors for Charging-2 Pack
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: [Only Charging] Multi USB Cable,Chafon 6 in 1 USB Multi Charge Cable with Type C,Mini USB,2 Micro USB Connectors for Charging-2 Pack

Amazon FSA Store

#####EOF##### Amazon.com: CaseBot Genuine Leather Case for Kindle Oasis (9th Gen, 2017 Release) - Slim Lightweight Cover with SF Coated Non Slip Matte Finish Back Case Auto Wake/Sleep for Amazon All-New 7" Kindle Oasis, Ice: Computers & Accessories

Loading recommendations for this item...

Added to Cart

Not Added

Item is in your Cart

View Cart

Not Added

There was a problem adding this item to Cart. Please try again later.
Sorry, we're having trouble showing recommendations right now. Please try again later.
Continue shopping
$13.99

FREE Shipping
Get free shipping
Free 5-8 business-day shipping within the U.S. when you order $25 of eligible items sold or fulfilled by Amazon.
Or get 4-5 business-day shipping on this item for $5.99. (Prices may vary for AK and HI.)
Learn more about free shipping
on orders over $25—or get FREE Two-Day Shipping with Amazon Prime
In Stock.
Sold by Fintie and Fulfilled by Amazon. Gift-wrap available.
CaseBot Genuine Leather C... has been added to your Cart

Have one to sell? Sell on Amazon

CaseBot Genuine Leather Case for Kindle Oasis (9th Gen, 2017 Release) - Slim Lightweight Cover with SF Coated Non Slip Matte Finish Back Case Auto Wake/Sleep for Amazon All-New 7" Kindle Oasis, Ice

by CaseBot
4.6 out of 5 stars 578 customer reviews

Price: $13.99
FREE Shipping
Get free shipping
Free 5-8 business-day shipping within the U.S. when you order $25 of eligible items sold or fulfilled by Amazon.
Or get 4-5 business-day shipping on this item for $5.99. (Prices may vary for AK and HI.)
Learn more about free shipping
on orders over $25—or get FREE Two-Day Shipping with Amazon Prime
Ice
    This fits your .
  • Make sure this fits by entering your model number.
  • Designed exclusively for Amazon All-New 7-Inch Kindle Oasis E-reader (9th Generation - 2017 Release). Does Not Fit Amazon 6-Inch Kindle Oasis (8th Generation - 2016 Released).
  • Authentic leather exterior and soft non-scratch microfiber interior lining provide full protection against daily use. Elegant genuine leather texture offers soft natural feel and classic look.
  • Soft matte finish hardshell offers all-round protection for your Oasis. Built-in magnetic strip provides sleep / wake feature.
  • Slim fit design keeps application and removal effortless. Precise cut-outs with easy access to all features.
  • CaseBot, a premium series brought to you by Fintie.

Love it? Add it to your registry.

Frequently bought together

  • CaseBot Genuine Leather Case for Kindle Oasis (9th Gen, 2017 Release) - Slim Lightweight Cover with SF Coated Non Slip Matte Finish Back Case Auto Wake/Sleep for Amazon All-New 7" Kindle Oasis, Ice
  • +
  • Kindle Oasis E-reader - Graphite, 7" High-Resolution Display (300 ppi), Waterproof, Built-In Audible, 32 GB, Wi-Fi + Free Cellular Connectivity
  • +
  • Amazon 5W USB Official OEM Charger and Power Adapter for Fire Tablets and Kindle eReaders
Total price: $383.97
Buy the selected items together

Special offers and product promotions

Color: Ice

Have a question?

Find answers in product info, Q&As, reviews

Please make sure that you are posting in the form of a question.

Don't see what you're looking for?
There was a problem completing your request. Please try your search again later.
All Product Information Customer Q&A's Customer Reviews

From the manufacturer

Sleeve Case Tempered Glass Screen Protector Stand Case Sleek Shield Series Case Slim Case Universal Tablet Stand
Compitability Kindle Oasis (2017) Kindle Oasis (2017) Kindle Oasis (2017) Kindle Oasis (2017) Kindle Oasis (2017) 4"-10" Smartphones and Tablets
Features Auto sleep/wake function 9H hardness, scratch resistand Multi-angles viewing Lightweight Slim, lightweight Multi-angles viewing, foldable
Material PU Leather Tempered Glass PU Leather PU Leather PU Leather Durable ABS
Multi-color options
Portability

Compare with similar items


CaseBot Genuine Leather Case for Kindle Oasis (9th Gen, 2017 Release) - Slim Lightweight Cover with SF Coated Non Slip Matte Finish Back Case Auto Wake/Sleep for Amazon All-New 7" Kindle Oasis, Ice
Ayotu Skin Touch Feeling Case for Kindle Oasis(9th Gen, Released only in 2017) Honeycomb Version PU case with Auto Wake/Sleep,New Waterproof 7''Kindle Oasis Case,Soft Shell Series KO-10 The Red Wine
MoKo Case for All-New Kindle Oasis (9th Generation, 2017 Release) - Premium Ultra Lightweight Shell Cover with Auto Wake/Sleep for Amazon Kindle Oasis E-Reader Case, Wine Red
CaseBot Fabric Case for Kindle Oasis (9th Gen, 2017 Release) - Slim Fit Cover with SF Coated Non Slip Matte Finish Back Case with Auto Wake/Sleep for Amazon All-New 7" Kindle Oasis, Denim Charcoal
MoKo Case for All-New Kindle Oasis (9th Generation, 2017 Release) - Slim Fit Premium PU Leather Protective Cover with Auto Wake/Sleep for Amazon Kindle Oasis E-Reader Case, Vintage Style
Ayotu Colorful Case for Kindle Oasis - (9th Gen, Released only in 2017) Honeycomb Version PU case with Auto Wake/Sleep,New Waterproof 7''Kindle Oasis Case,Soft Shell Series KO-10 The Watercolor
Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart
Customer Rating 4 out of 5 stars (578) 4 out of 5 stars (133) 4 out of 5 stars (1203) 4 out of 5 stars (276) 4 out of 5 stars (343) 4 out of 5 stars (103)
Price $13.99 $24.99 $15.99 $12.59 $13.99 $18.99
Shipping FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25
Sold By Fintie Ayotu Mall-US BSCstore Fintie BSCstore Ayotu Mall-US
Color Ice The Red Wine Wine Red Denim Charcoal Vintage Style The Watercolor
Item Dimensions 6.3 x 5.71 x 0.49 in 5.6 x 6.3 x 0.5 in 6.57 x 4.72 x 0.49 in 6.3 x 5.71 x 0.49 in 6.57 x 4.72 x 0.49 in 5.6 x 6.3 x 0.5 in

Product description

Color:Ice

CaseBot, a premium series brought to you by Fintie!

Protect your 7-Inch Kindle Oasis with this Fintie Slim Case at all times! The Slim Case sports a simple and classy design. The matte coated back shell is made from durable polycarbonate material so you do not need to worry about any damages. It offers an easy clip-on application. Our innovative cover was designed to specifically fit your Kindle Oasis and secures your device without any hinges or straps. Thin, lightweight, and durable, this cover is perfect for taking Kindle Oasis wherever you go. Available in a variety of bright and fun colors.


Product information

Color:Ice

Feedback

If you are a seller for this product, would you like to suggest updates through seller support?
Would you like to tell us about a lower price?

Customer Questions & Answers

578 customer reviews

4.6 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

March 13, 2018
Color: BurgundyVerified Purchase
28 people found this helpful
Comment Report abuse
February 16, 2018
Color: BurgundyVerified Purchase
15 people found this helpful
Comment Report abuse
February 3, 2018
Color: BrownVerified Purchase
review imagereview imagereview imagereview image
22 people found this helpful
Comment Report abuse
February 20, 2018
Color: BlackVerified Purchase
11 people found this helpful
Comment Report abuse
April 14, 2018
Color: BlackVerified Purchase
5 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

CaseBot Genuine Leather Case for Kindle Oasis (9th Gen, 2017 Release) - Slim Lightweight Cover with SF Coated Non Slip Matte Finish Back Case Auto Wake/Sleep for Amazon All-New 7&quot; Kindle Oasis, Ice
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: CaseBot Genuine Leather Case for Kindle Oasis (9th Gen, 2017 Release) - Slim Lightweight Cover with SF Coated Non Slip Matte Finish Back Case Auto Wake/Sleep for Amazon All-New 7" Kindle Oasis, Ice
Amazon FSA Store

#####EOF##### What’s New at AWS – Cloud Innovation & News

The AWS Cloud platform expands daily. Browse below to learn about the latest product, service, and feature announcements from AWS.

More…

20192018 | 20172016  |  2015  |  2014  |  2013  |  2012  |  2011  |  2010  |  2009  |  2008  |  2007  |  2006  | 2005  |  2004


#####EOF##### Amazon.com : Fenheus Girls Ladies Mens Fine Travel Folding Pocket Salon Hair Brush Comb Red Portable : Beauty
Price: $4.59 & FREE Shipping
In Stock. Ships from and sold by Peak-Peak(fromChina 15-35 days delivery).



One-time purchase:

Fenheus Girls Ladies Mens Fine Travel Folding Pocket Salon Hair Brush Comb Red Portable

by Fenheus
3.6 out of 5 stars 5 customer reviews

About the product
  • Material: Soft Silicone
  • Folded Size:app 11.5 X 3cm
  • Opened Size:app 21.5 X 2.5cm
Amazon FSA Store


Frequently bought together

  • Fenheus Girls Ladies Mens Fine Travel Folding Pocket Salon Hair Brush Comb Red Portable
  • +
  • 2 Pcs Lady Coffee Color Fishbone Shaped 2 Way Folding Hair Brush Pocket Comb
Total price: $7.54
Buy the selected items together

Discover Additional Products

CeraVe Moisturizing Cream | 19 Ounce | Daily Face and Body Moisturizer for Dry Skin
$15.06
Added to Cart
Neutrogena Makeup Removing Wipes, 25 Count, Twin Pack
$8.89
Added to Cart
Thayers Alcohol-Free Rose Petal Witch Hazel Toner with Aloe Vera Formula-12 Oz, 14.30 Ounce
$9.31
Added to Cart

Discover Related Products

2 Pcs Lady Coffee Color Fishbone Shaped 2 Way Folding Hair Brush Pocket Comb
$2.95
Added to Cart
Added to your Cart

Have a question?

Find answers in product info, Q&As, reviews

Please make sure that you are posting in the form of a question.

Don't see what you're looking for?
There was a problem completing your request. Please try your search again later.
All Product Information Customer Q&A's Customer Reviews

Product description

Package include:
1 * Comb


Product details

  • Shipping Weight: 0.8 ounces (View shipping rates and policies)
  • ASIN: B00G63D2XC
  • UPC: 787734289153 784922283467 520728276681
  • Average Customer Review: 3.6 out of 5 stars 5 customer reviews
  • Amazon Best Sellers Rank: #769,602 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)
  • Would you like to tell us about a lower price?


Customer Questions & Answers

5 customer reviews

3.6 out of 5 stars

Review this product

Share your thoughts with other customers

June 27, 2014
Verified Purchase
March 31, 2016
Verified Purchase
September 10, 2015
Verified Purchase
December 18, 2014
Verified Purchase
Amazon FSA Store

Pages with related products. See and discover other items: fine hair brush

Disclaimer: While we work to ensure that product information is correct, on occasion manufacturers may alter their ingredient lists. Actual product packaging and materials may contain more and/or different information than that shown on our Web site. We recommend that you do not solely rely on the information presented and that you always read labels, warnings, and directions before using or consuming a product. For additional information about a product, please contact the manufacturer. Content on this site is for reference purposes and is not intended to substitute for advice given by a physician, pharmacist, or other licensed health-care professional. You should not use this information as self-diagnosis or for treating a health problem or disease. Contact your health-care provider immediately if you suspect that you have a medical problem. Information and statements regarding dietary supplements have not been evaluated by the Food and Drug Administration and are not intended to diagnose, treat, cure, or prevent any disease or health condition. Amazon.com assumes no liability for inaccuracies or misstatements about products.


#####EOF##### AWS Careers

AWS Careers

We're looking for builders to help us innovate the future of cloud computing.

AWS Builder Stories – Meet Francessca Vasquez

Help us build the future

For people who like to invent, there's no better place to build than AWS. We're currently hiring around the globe, in a variety of different technical and business roles. Join AWS and help us build the future of cloud computing.

locations
AWS teams around the world are building the future. Learn about some of our locations and search for open positions.

How we work

culture
We have a peculiar way of working at AWS. Learn more about our Leadership Principles.
team
Our people solve a wide variety of technical challenges, always focusing on the customer. Learn more about our teams.

AWS in the News

cubby
Hear what people are saying about Amazon Web Services.

AWS Videos

At re:Invent, Tim Bray shares what AWS is doing in Serverless and the role of the Principal Engineer at Amazon
Hear how Teresa Carlson, AWS VP of Global Public Sector, got started in tech
Security is a priority for AWS Cloud customers. Learn how our Automated Reasoning Group helps customers achieve provable cloud security.
Find out what it's like to work as a Solutions Architect in AWS
Hear how Vizio leverages AWS IoT technology to improve the TV-watching experience of their customers
Lisa Hare shares her unexpected path to becoming a software developer and how she uses her skills to help other.
Troy Larson, a cloud architect at AWS, shares how he is using Amazon Polly, Amazon Lex and a Raspberry Pi to make life safer, happier and more comfortable for his son Calvin, who has autism.
AWS employees around the world describe their favorite Leadership Principles and how they define our culture.

To see more AWS video content, visit our YouTube channel.

Military

Learn more about our military commitment.

Amazon is committed to hiring and training members of the military community. Learn about the support we provide to transitioning military, veterans and family members in pursuing new careers >>

Meet our builders around the world.

At Amazon Web Services, we are all builders. Our people come from everywhere. Our ideas too. Meet some of our passionate Builders at AWS, and learn how we are changing the world through technology.

Ready to help us build the future?

Search for your new career in AWS >>
#####EOF##### Amazon Web Services (AWS) – 雲端運算服務

探索我們的產品

機器學習
管理與管控

支援客戶創新

AWSMP_logo_new-RGB

尋找。購買。部署。

AWS Marketplace 是包含獨立軟體開發廠商數千種軟體產品的數位型錄,可讓您輕鬆地尋找、測試、購買和部署在 AWS 上執行的軟體。
進一步了解 

探索我們的解決方案

60-machine-learning
在任何地方建立功能強大的服務和平台,以及廣泛的機器學習架構支援。
60-analytics
在一個集中化的儲存庫安全地存放、分類和分析所有資料。
60-IoT
由無所不在的裝置組成的系統,將真實世界連接至雲端。
60-serverless
建立和執行應用程式與服務,無須擔心伺服器。
60-containers
封裝和部署輕量的應用程式,並為應用程式提供一致的可攜式軟體環境,可在任何地方輕鬆執行及擴展。
60-enterprise
使用專為大型組織獨特的安全性、合規、隱私權和管控需求所設計的一套完善服務進行建置。
60-storage
耐用且符合經濟效益的選項,可用於備份、災難復原,以及存檔 PB 規模的資料。
60-windows-workloads
適用於 Microsoft 應用程式的彈性、可擴展運算容量。輕鬆地管理和保護 Windows 工作負載。

針對最高要求設計

icon-security

安全

具備廣泛的安全功能,可滿足最高的要求。
icon-compliant

合規

豐富的控制、審核和廣泛的安全認證。
icon-hybrid

混合

建立混合式架構,將現場部署基礎設施延伸到雲端。
icon-scalable

可擴展性

視需要存取最多或最少的資源,並根據需求擴展和縮減,一切只要幾分鐘就能完成。

了解我們的客戶如何在 AWS 上進行建置

AWS 區域全球網路

AWS 雲端遍及全球 20 個地理區域內的 61 個可用區域,而且已宣布計劃在巴林、開普敦、香港特別行政區和米蘭增加 12 個可用區域和四個區域。
2019 Infra Map - PDX
Key_AZ

區域及可用區域數目

美國東部
維吉尼亞北部 (6)、俄亥俄 (3)

美國西部
加利佛尼亞北部 (3)、奧勒岡 (4)

亞太區域
孟買 (2)、首爾 (2)、新加坡 (3)、雪梨 (3)、東京 (4)、大阪 – 當地 (1)

加拿大
中部 (2)

中國
北京 (2)、寧夏 (3)

歐洲
法蘭克福 (3)、愛爾蘭 (3)、倫敦 (3)、巴黎 (3)、斯德哥爾摩 (3)

南美洲
聖保羅 (3)

GovCloud (US)
US-East (3)、US-West (3)

Key_Coming-Soon

新區域 (即將推出)

巴林

開普敦

香港特別行政區

米蘭

進一步了解 
#####EOF##### The Boat - Kindle edition by Nam Le. Literature & Fiction Kindle eBooks @ Amazon.com.

Buying Options

Kindle Price: $12.99

Save $2.96 (19%)

These promotions will be applied to this item:

Some promotions may be combined; others are not eligible to be combined with other offers. For details, please see the Terms & Conditions associated with these promotions.

Deliver to your Kindle or other device

Buy for others

Give as a gift or purchase for a team or group. Learn more

Buying and sending eBooks to others


Select quantity
Buy and send eBooks
Recipients can read on any device

Additional gift options are available when buying one eBook at a time. Learn more


These ebooks can only be redeemed by recipients in the US. Redemption links and eBooks cannot be resold.

Quantity:
This item has a maximum order quantity limit.

Deliver to your Kindle or other device

<Embed>
Kindle App Ad
The Boat by [Le, Nam]

Follow the Author

Something went wrong. Please try your request again later.


The Boat Kindle Edition

3.5 out of 5 stars 49 customer reviews

See all 14 formats and editions Hide other formats and editions
Price
New from Used from
Kindle
$12.99
Mass Market Paperback
$3.99
Audio CD
$7.98

Length: 289 pages Word Wise: Enabled Enhanced Typesetting: Enabled
Page Flip: Enabled

An Amazon Book with Buzz: "Maybe You Should Talk to Someone"
"This is a daring, delightful, and transformative book." ―Arianna Huffington, Founder, Huffington Post Learn more
click to open popover

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Editorial Reviews

From Publishers Weekly

Starred Review. From a Colombian slum to the streets of Tehran, seven characters in seven stories struggle with very particular Swords of Damocles in Pushcart Prize winner Le's accomplished debut. In Halflead Bay, an Australian mother begins an inevitable submission to multiple sclerosis as her teenage son prepares for the biggest soccer game of his life. The narrator of Meeting Elise, a successful but ailing artist in Manhattan, mourns his dead lover as he anticipates meeting his daughter for the first time since she was an infant. The opening Love and Honor and Pity and Pride and Compassion and Sacrifice features a Vietnamese character named Nam who is struggling to complete his Iowa Writer's Workshop master's as his father comes for a tense visit, the first since an earlier estrangement shattered the family. The story's ironies—You could totally exploit the Vietnamese thing, says a fellow student to Nam—are masterfully controlled by Le, and reverberate through the rest of this peripatetic collection. Taken together, the stories cover a vast geographic territory (Le was born in Vietnam and immigrated to Australia) and are filled with exquisitely painful and raw moments of revelation, captured in an economical style as deft as it is sure. (May)
Copyright © Reed Business Information, a division of Reed Elsevier Inc. All rights reserved.

Review

“Nam Le's lyricism and emotional urgency lend his portraits enormous visceral power. . . . A remarkable collection.” —The New York Times“Nam Le is extraordinary, a writer who must - who will - be heard. . . .The Boat's vision and its power are timeless.” —Mary Gaitskill“Astounding. . . . A refreshingly diverse and panoramic debut.” —Los Angeles Times Book Review“Extraordinarily accomplished and sophisticated. . . . Moving and unforgettable.” —San Francisco Chronicle“Wonderful stories that snarl and pant across our crazed world . . . . Nam Le is a heartbreaker, not easily forgotten.” —Junot Díaz“Lyrical . . . Powerful and assured. . . . [Le's] kaleidoscopic world view is on display throughout the stories, which seamlessly blend cultural traditions, accents and landscapes that run from lush to barren.” —The Miami Herald“Stunning. . . .These stories are so beautifully written and cross emotional barriers of time and place with such clear vision and strong command of language we can only wonder with awe what Nam Le will offer us next.” —The Oregonian“A collection that takes the reader across the globe. From Iowa to Colombia to Australia and Iran, the characters in Le’s stories each shape the world around them. In each story, the protagonists create a new atmosphere. . . .While Le is a writer who seems to be interested in the issues of the world, he is also a writer interested in the young. . . . Le does not downplay the lives of his children as fiction often does when portraying younger characters but presents them with a seriousness and intelligence that is refreshing. . . . The Boat is an impressive debut from a writer with a lot more to give. A writer to be remembered.”—Marion Frisby, The Denver Post“Powerful . . . Lyrical . . . Devastating . . ....

Product details

  • File Size: 638 KB
  • Print Length: 289 pages
  • Publisher: Vintage; 1 edition (May 13, 2008)
  • Publication Date: May 13, 2008
  • Sold by: Random House LLC
  • Language: English
  • ASIN: B0018ZDAUS
  • Text-to-Speech: Enabled
  • X-Ray:
  • Word Wise: Enabled
  • Lending: Not Enabled
  • Screen Reader: Supported
  • Enhanced Typesetting: Enabled
  • Amazon Best Sellers Rank: #395,870 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  • Would you like to tell us about a lower price?


49 customer reviews

3.5 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

February 25, 2017
Format: Kindle EditionVerified Purchase
February 24, 2013
Format: Kindle EditionVerified Purchase
January 16, 2019
Format: PaperbackVerified Purchase
August 2, 2017
Format: PaperbackVerified Purchase
July 11, 2008
Format: HardcoverVerified Purchase
2 people found this helpful
Comment Report abuse
October 18, 2008
Format: HardcoverVerified Purchase
March 3, 2014
Format: PaperbackVerified Purchase
October 8, 2013
Format: Kindle EditionVerified Purchase

Set up an Amazon Giveaway

The Boat
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: The Boat

#####EOF##### TCP/IP Illustrated, Volume 1: The Protocols (2nd Edition) (Addison-Wesley Professional Computing Series): Kevin R. Fall, W. Richard Stevens: 0785342336313: Amazon.com: Books
TCP/IP Illustrated, Volume 1: The Protocols and millions of other books are available for Amazon Kindle. Learn more

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

TCP/IP Illustrated, Volume 1: The Protocols (2nd Edition) (Addison-Wesley Professional Computing Series) 2nd Edition

4.1 out of 5 stars 55 customer reviews
ISBN-13: 978-0321336316
ISBN-10: 0321336313
Why is ISBN important?
ISBN
This bar-code number lets you verify that you're getting exactly the right version or edition of a book. The 13-digit and 10-digit formats both work.
Scan an ISBN with your phone
Use the Amazon App to scan ISBNs and compare prices.
Sell yours for a Gift Card
We'll buy it for up to $30.0
Learn More
Trade in now
Have one to sell? Sell on Amazon
<Embed>
Due Date: Jun 23, 2019 Rental Details
  • FREE return shipping at the end of the semester.
  • Access codes and supplements are not guaranteed with rentals.
In Stock. Rented from RentU , Fulfilled by Amazon
  • List Price: $69.99
  • Save: $29.71 (42%)
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Note: Available at a lower price from other sellers that may not offer free Prime shipping.
List Price: $69.99
Save: $10.05 (14%)
TCP/IP Illustrated, Volum... has been added to your Cart
Rent from
Price
New from Used from
Kindle
Hardcover $40.28
$59.94
$53.71 $50.44
Paperback
$39.99 $24.67

Note: Available at a lower price from other sellers that may not offer free Prime shipping.
Free Two-Day Shipping for College Students with Prime Student Free Two-Day Shipping for College Students with Amazon Student


Amazon First Reads | Editors' picks at exclusive prices
click to open popover

Frequently bought together

  • TCP/IP Illustrated, Volume 1: The Protocols (2nd Edition) (Addison-Wesley Professional Computing Series)
  • +
  • Unix Network Programming, Volume 1: The Sockets Networking API (3rd Edition)
Total price: $98.09
Buy the selected items together

Editorial Reviews

Review

About the Author


Product details

  • Series: Addison-Wesley Professional Computing Series
  • Hardcover: 1056 pages
  • Publisher: Addison-Wesley Professional; 2 edition (November 25, 2011)
  • Language: English
  • ISBN-10: 0321336313
  • ISBN-13: 978-0321336316
  • Product Dimensions: 7.3 x 2.3 x 9.3 inches
  • Shipping Weight: 3.3 pounds (View shipping rates and policies)
  • Average Customer Review: 4.1 out of 5 stars 55 customer reviews
  • Amazon Best Sellers Rank: #72,570 in Books (See Top 100 in Books)
  • Would you like to tell us about a lower price?
    If you are a seller for this product, would you like to suggest updates through seller support?

NO_CONTENT_IN_FEATURE

Try the Kindle edition and experience these great reading features:

CLOSE
See Kindle Edition

55 customer reviews

4.1 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

July 16, 2014
Format: HardcoverVerified Purchase
35 people found this helpful
Comment Report abuse
December 29, 2013
Format: HardcoverVerified Purchase
7 people found this helpful
Comment Report abuse
July 8, 2014
Format: Kindle EditionVerified Purchase
2 people found this helpful
Comment Report abuse
January 26, 2014
Format: HardcoverVerified Purchase
9 people found this helpful
Comment Report abuse
April 3, 2013
Format: Kindle EditionVerified Purchase
4 people found this helpful
Comment Report abuse
March 26, 2016
Format: HardcoverVerified Purchase
2 people found this helpful
Comment Report abuse
July 31, 2018
Format: PaperbackVerified Purchase
March 8, 2015
Format: Kindle EditionVerified Purchase
One person found this helpful
Comment Report abuse

Set up an Amazon Giveaway

TCP/IP Illustrated, Volume 1: The Protocols (2nd Edition) (Addison-Wesley Professional Computing Series)
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: TCP/IP Illustrated, Volume 1: The Protocols (2nd Edition) (Addison-Wesley Professional Computing Series)
Pages with related products. See and discover other items: network programming, system programming, tcp/ip protocols, tcp ip protocols
#####EOF##### クラウドならアマゾン ウェブ サービス 【AWS 公式】

製品を調べる

コンピューティング
データベース
IoT
機械学習
マネジメントとガバナンス
セキュリティ、アイデンティティ、コンプライアンス

お客様のイノベーションを促進する

  • エンタープライズトランスフォーメーション
  • 予測分析
  • 機械学習
  • サーバーレス
  • ゲーム
  • エンタープライズアプリケーション
  • エンタープライズトランスフォーメーション
  • PI-C1_Logo

    Capital One が AWS を使用してバンキングの新たな姿を創造する

    Capital One が教育と長期計画を通じ、また常に顧客のニーズに集中することにより、クラウドファースト戦略を進めた事例をご覧ください。
    詳細はこちら 
    PI-C1_Mobile_Step-1

    お客様にフォーカスする

    2014 年、Capital One のプライベートクラウドはまだできたばかりで、AWS も試用の段階でした。顧客が求める機能をできるだけ短期間で構築するため、同社は AWS の導入を決めました。

    PI-C1_Mobile_Step-2

    困難なところから手を付ける

    金融機関の Capital One にとって、セキュリティとコンプライアンスは非常に重要です。これらのニーズに対応するため、Capital One ではクラウドリスクフレームワークを構築しクラウドガバナンス機能を確立してから、ワークロードを 1 つ AWS に移行しました。

    PI-C1_Mobile_Step-3

    クラウド化への鍵となった教育

    Capital One は、AWS 上で直接作業するエンジニアや、クラウドコンピューティングの力を紹介し広めていくための知識を必要とする技術者以外の関係者に、クラウドトレーニングプログラムを提供しています。同社は現在、AWS Certification を持つ従業員の数で世界トップ 3 にランクインしています。

    PI-C1_Mobile_Step-4

    クラウドの恩恵を得る

    AWS を利用することで、Capital One では、新商品の市場投入までの期間が数年や数か月から数週間に短縮され、機械学習を利用してカスタマーエクスペリエンスも向上しています。また、開発者やエンジニアなど一流の人材が集まってきています。これらすべてが、「お客様のために優れたサービスを作り上げる」という同社の最も重要な目標の達成につながっています。

  • 予測分析
  • F1-Insights-logo-power-by-AWS

    Formula One Group は Amazon SageMaker を使用してレーシングを最適化

    Formula 1 が Amazon SageMaker やその他の AWS サービスを使用し、どのようにレーシング決定の最適化とファンの体験改善を行っているかご覧ください。
    詳細はこちら 
    PI-F1-1-mobile-beginning-a-transformation-ending

    変換を開始

    Formula One Group ではインフラストラクチャの大部分をオンプレミスのデータセンターから AWS へ移動し、Amazon SageMaker を含む AWS 機械学習サービスで標準化しています。

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    機械学習によるレーシング最適化

    過去 65 年以上にわたる、車から収集されたレースデータの履歴を使用して、Formula 1 のデータサイエンティストは深層学習モデルのトレーニングをしてレース予測を行い、チームがレース中の意思決定を最適化するのに役立てています。モデルは、チームが車をいつピットインさせるべきかを予測し、タイヤの交換のベストタイミングを決定し、ドライバーのパフォーマンスを評価することができます。

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    トラックにファンを引き込む

    その後 Formula 1 は、AWS データストリーミング、分析、メディアサービスを使用して、5 億人を超えるファンにドライバーの意思決定と車のパフォーマンスに関するインサイトを提供しています。

    PI-F1-4-mobile-building-for-the-future-ending

    未来志向の構築

    Formula 1 は AWS のスケーラブルな環境で高性能のコンピューティングワークロードを実行するため、組織は容量の心配をすることなく Formula 1 のレーシングエクスペリエンスやカーデザインなどの革新を図ることができます。

  • 機械学習
  • Logo_Statcast-AI

    MLB Statcast は、ファンの盛り上がりを AWS でのビッグデータ分析によりもたらす

    アメリカのプロ野球リーグが AWS Machine Learning を利用して統計に意味をもたらす方法をご覧ください。
    詳細はこちら 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    深層学習向けの基盤

    MLB は数十年にわたり、選手とクラブの統計データを収集しており、2015 年には AWS の使用を開始してゲーム日の統計情報を収集、配布しファンエクスペリエンスを向上させました。

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    開発者の強化

    Amazon SageMaker を使用することで、MLB は開発者やデータサイエンティストが機械学習モデルをあらゆる規模で、短期間で簡単に構築、トレーニング、デプロイできるようにしています。

    PI-MLB-3-Lightening the Load-ending stage

    負荷の軽減

    処理された各プレイのデータは、Amazon S3 に保存されます。

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    ゲームのパーソナライズ

    MLB は、ピッチ予測の精度テストやパーソナライズされたビューワーエクスペリエンスの創造など、選手のパフォーマンスを分析する Statcast のトラッキング技術の改善を継続するため、Amazon ML Solutions Lab との連携を計画しています。

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    人工知能によるホームラン

    MLB は人工知能を利用した革新を続けます。組織は、Amazon Comprehend を使用して、アイコン的なアナウンサーをシミュレートするライブゲーム向けのスクリプトを作成することができる言語モデルを構築する予定です。

  • サーバーレス
  • Matson-logo

    Matson における AWS を利用した海外輸送およびロジスティック事業

    Matson が AWS を使用して、イノベーションとワールドクラスのカスタマーサービスを推進し、運用上の信頼性やセキュリティ、およびインフラストラクチャのコスト削減を実現している方法について説明します。
    詳細はこちら 
    PI-Matson-Mobile_Step-1

    リアルタイムのコンテナ追跡

    Matson ではコンテナをグローバルに追跡できる主力モバイルアプリケーションを構築し、お客様がご自身の輸送貨物をリアルタイムで追跡できるようにしています。このアプリケーションには、他にもインタラクティブな貨物船スケジュール検索、位置情報に基づく港の地図検索、ゲート地点のライブカメラ映像といった役立つ機能が用意されています。

    PI-Matson-Mobile_Step-2

    モバイル端末でのアクセス

    モバイルデバイスから AWS へのアクセスは常に Amazon API Gateway 経由で行われるため、可用性の高いエッジロケーションのエンドポイントから、Matson の既存の仮想プライベートクラウド上のリソースにアクセスできます。

    PI-Matson-Mobile_Step-3

    サーバーレスコンピューティング

    AWS Lambda 関数は、マイクロサービス向けのパターンを利用して設計されており、貨物の追跡や貨物船のスケジュールといった海上を拠点としたビジネスに固有の状況に応じてモデル化されています。 

    PI-Matson-Mobile_Step-4

    データベースの設定とストレージ

    モバイルデバイスから送信されるユーザーフィードバックの設定とユーザーフィードバックの通知の設定は、Amazon DynamoDB で管理されます。リアルタイムの通知は DynamoDB ストリームによって Matson のカスタマーサービスチームに送られます。 

    PI-Matson-Mobile_Step-5

    データのモニタリングとアラート

    Matson をご利用になるお客様は、コンテナ追跡と貨物船のステータスに関する正確な最新の情報を必要としています。システムイベントのモニタリングとアラートは、Amazon CloudWatch、Amazon SNS、Amazon SES、AWS Lambda、CloudWatch Logs を使用してアーカイブされます。 

    PI-Matson-Mobile_Step-6

    エンドツーエンドのサーバーレスアプリケーション

    Matson では、エンドツーエンドのサーバーレスアプリケーションを提供することで、お客様に貨物を追跡していただけるようになりました。さらに、インフラストラクチャの管理も不要になりました。

  • ゲーム
  • PI-Epic_Logo_Final
    Epic Games が AWS を使用してゲーム『 Fortnite』を世界で展開
    Epic Games が AWS を使用して、2億人を超える世界中のプレイヤーに『 Fortnite』を配信している事例をご覧ください。
    詳細はこちら 
    PI-Epic-Mobile_Step-1

    クラウドで基盤を構築する

    Epic Games は 2012 年から AWS を利用しています。現在はすべてを AWS クラウドに移して、世界規模のゲームサーバーフリート、バックエンドプラットフォームシステム、データベース、ウェブサイト、アナリティクスパイプライン、処理システムなどを AWS で実行しています。

    PI-Epic-Mobile_Step-2

    瞬く間に人気ゲームに

    Epic Games が 2017 年にリリースしたクロスプラットフォームのマルチプレイヤーゲーム『Fortnite』は、瞬く間に人気を博しました。リリース後最初の1年で、Fortnite のユーザーベースは 100 倍以上に膨れ上がり、世界中で 2 億人に達しました。

    PI-Epic-Mobile_Step-3

    拡張性の限界を超える

    AWS は Fortnite の成功に不可欠でした。AWS を利用することで、Epic Games はキャパシティーを心配することなく何億人ものユーザーを招待してゲーム内イベントを開催したり、1 分間に 1 億 2,500 万件ものイベントをアナリティクスパイプラインに取り込んだり、1 か月に 5PB を超えるデータウェアハウスの増加に対応したりしています。

    PI-Epic-Mobile_Step-4

    最上級のゲーム体験を提供する

    AWS を利用することで、Epic Games は常にプレイヤー体験を向上し、ワクワクするような新しいゲームやゲーム要素を提供しています。同社では今後、機械学習やコンテナ化されたサービスなど、AWS のサービスの利用を拡大していく予定です。

  • エンタープライズアプリケーション
  • BPP_ylw_logo

    BP は効率を高めて、重要なビジネスアプリケーションのコストの俊敏性と高速性を実現しています

    BP が、SAP アプリケーションスイートを簡素化および最新化し、ユーザーエクスペリエンスを向上させつつコストの俊敏性とパフォーマンスの強化を達成した方法をご覧ください。
    詳細はこちら 
    PI-BP-Mobile_Step-1

    重要なビジネスアプリケーションを管理

    BP の IT 部門は、世界中の何千もの従業員がサプライチェーン、調達、財務などの分野で使用する SAP アプリケーションを管理しています。 

    PI-BP-Mobile_Step-2

    スピードとコストの俊敏性を向上

    BP では、スピードを高めてコストの俊敏性を達成するために、Amazon EC2 を使用して中核となるビジネスアプリケーションをクラウドに移行しました。さらに、BP のチームは EC2 X1 インスタンスを構築して規模を拡大し、リアルタイム分析を強化しました。

    PI-BP-Mobile_Step-3

    パフォーマンスの向上

    チームは、数週間や数か月間ではなく、数時間で需要に応じてシステムを立ち上げることができるようになりました。BP では、Lubricants ERP システムの速度が 40% 向上するなど、パフォーマンスの全体的な向上が見られています。 

    PI-BP-Mobile_Step-4

    データの保護

    BP では、クラウドに移行するときに、AWS Config、AWS Identity and Access Management (IAM)、Amazon CloudWatch、AWS Trusted Advisor を使用して自社のセキュリティ基準を再設定しました。その新しい基準に従って、IT 部門を運営するための安全なフレームワークを開発することができました。

AWSMP_logo_new-RGB

検索する。購入する。デプロイする。

AWS Marketplace のデジタルカタログには何千ものソフトウェアが独立ソフトウェアベンダーから出品されています。AWS で動作するソフトウェアの検索、テスト、購入、デプロイが簡単に行えます。
詳細はこちら 

ソリューションを調べる

60-machine-learning
場所を問わず、強力なサービスとプラットフォームや幅広い機械学習フレームワークサポートで構築します。
60-analytics
単一の集中リポジトリの中で、データの保存、分類、分析をセキュアに実行します。
60-IoT
物質の世界をクラウドに接続するユビキタスデバイス群のシステムです。
60-serverless
サーバーにわずらわされることなく、アプリケーションやサービスを構築し、実行します。
60-containers
軽量で、どこでも簡単にアプリケーションを実行およびスケールできる、一貫したポータブルソフトウェア環境を実現するアプリケーションをパッケージにしてデプロイします。
60-enterprise
成熟した一群のサービスによって構築され、大規模な組織特有のセキュリティ、コンプライアンス、プライバシー、ガバナンスの要件を満たすよう設計されています。
60-storage
ペタバイト規模でのバックアップ、災害対策、データアーカイブのための、耐久性とコスト効率に優れたオプションです。
60-windows-workloads
Microsoft アプリケーション向けの柔軟でスケーラブルなコンピューティング性能。Windows ワークロードを簡単に管理し、保護できます。

最も厳しい要件に対応できる設計

icon-security

セキュア

最も厳しい要件を満たす包括的なセキュリティ機能です。
icon-compliant

準拠

管理、監査が充実しており、幅広いセキュリティ認定に対応します。
icon-hybrid

ハイブリッド

オンプレミスのインフラストラクチャをクラウドに拡張するハイブリッドアーキテクチャを構築します。
icon-scalable

スケーラブル

ちょうど必要な量のリソースを利用でき、必要に応じて、スケールアップやスケールダウンをわずか数分で行えます。

お客様の AWS での構築事例を見る

AWS リージョンのグローバルネットワーク

AWS クラウドは世界中の 20 の地理的リージョンにある 61 のアベイラビリティーゾーンで運用されており、さらに 4 つのリージョン (バーレーン、ケープタウン、香港特別行政区、ミラノ) と 12 のアベイラビリティーゾーンが追加される予定です。
2019 Infra Map - PDX
Key_AZ

リージョンとアベイラビリティーゾーンの数

米国東部
バージニア北部 (6)、オハイオ (3)

米国西部
北カリフォルニア (3)、オレゴン (4)

アジアパシフィック
ムンバイ (2)、ソウル (2)、シンガポール (3)、シドニー (3)、東京 (4)、大阪ローカル (1)

カナダ
中部 (2)

中国
北京 (3)、寧夏 (2)

欧州
フランクフルト (3)、アイルランド (3)、ロンドン (3)、パリ (3)、ストックホルム (3)

南米
サンパウロ (3)

GovCloud (米国)
米国東部 (3)、米国西部 (3)

Key_Coming-Soon

新しいリージョン (近日追加予定)

バーレーン

ケープタウン

香港

ミラノ

詳細 
#####EOF##### Amazon.com: Are We Safe Enough?: Measuring and Assessing Aviation Security (9780128114759): Mark G. Stewart, John Mueller: Books
Are We Safe Enough? and millions of other books are available for Amazon Kindle. Learn more

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Are We Safe Enough?: Measuring and Assessing Aviation Security 1st Edition

ISBN-13: 978-0128114759
ISBN-10: 0128114754
Why is ISBN important?
ISBN
This bar-code number lets you verify that you're getting exactly the right version or edition of a book. The 13-digit and 10-digit formats both work.
Scan an ISBN with your phone
Use the Amazon App to scan ISBNs and compare prices.
Have one to sell? Sell on Amazon
Buy new
$96.60
Usually ships within 6 to 10 days.
Ships from and sold by Wordery Specialist.
$96.60 + Free Shipping
Price
New from Used from
Kindle
Paperback
$96.60
$96.60 $93.00
Free Two-Day Shipping for College Students with Prime Student Free Two-Day Shipping for College Students with Amazon Student


Amazon First Reads | Editors' picks at exclusive prices
click to open popover

Editorial Reviews

Review

About the Author


Product details

  • Paperback: 268 pages
  • Publisher: Elsevier; 1 edition (September 26, 2017)
  • Language: English
  • ISBN-10: 0128114754
  • ISBN-13: 978-0128114759
  • Product Dimensions: 6 x 9 inches
  • Shipping Weight: 12.8 ounces (View shipping rates and policies)
  • Average Customer Review: Be the first to review this item
  • Amazon Best Sellers Rank: #1,336,541 in Books (See Top 100 in Books)
  • Would you like to tell us about a lower price?
    If you are a seller for this product, would you like to suggest updates through seller support?

NO_CONTENT_IN_FEATURE

Try the Kindle edition and experience these great reading features:

CLOSE
See Kindle Edition

No customer reviews


Review this product

Share your thoughts with other customers

#####EOF##### AWS Site Terms

Last Updated: August 30, 2017.

Welcome to the Amazon Web Services site (the “AWS Site”). Amazon Web Services, Inc. and/or its affiliates (“AWS”) provides the AWS Site to you subject to the following terms of use (“Site Terms”). By visiting the AWS Site, you accept the Site Terms. Please read them carefully. In addition, when you use any current or future AWS services, content or other materials, you also will be subject to the AWS Customer Agreement or other agreement governing your use of our services (the “Agreement”).

Please review our Privacy Policy, which also governs your visit to the AWS Site, to understand our practices.

When you visit the AWS Site or send e-mails to us, you are communicating with us electronically. You consent to receive communications from us electronically. We will communicate with you by e-mail or by posting notices on the AWS Site. You agree that all agreements, notices, disclosures and other communications that we provide to you electronically satisfy any legal requirement that such communications be in writing.

All content included on the AWS Site, such as text, graphics, logos, button icons, images, audio clips, digital downloads, data compilations, and software, is the property of AWS or its content suppliers and protected by United States and international copyright laws. The compilation of all content on the AWS Site is the exclusive property of AWS and protected by U.S. and international copyright laws. All software used on the AWS Site is the property of AWS or its software suppliers and protected by United States and international copyright laws.

“Amazon Web Services”, “AWS”, “Amazon EC2”, “EC2”, “Amazon Elastic Compute Cloud”, “Amazon Virtual Private Cloud”, “Amazon VPC”, “Amazon SimpleDB”, “SimpleDB”, “Amazon S3”, “Amazon Simple Storage Service”, “Amazon CloudFront”, “CloudFront”, “Amazon SQS”, “SQS”, “Amazon Simple Queue Service”, “Amazon Simple Email Service”, “Amazon Elastic Beanstalk”, “Amazon Simple Notification Service”, “Amazon Route 53”, “Amazon RDS”, “Amazon Relational Database”, “Amazon CloudWatch”, “AWS Premium Support”, “AWS Import/Export”, “Amazon FPS”, “Amazon Flexible Payments Service”, “Amazon DevPay”, “DevPay”, “Amazon Mechanical Turk”, “Mechanical Turk”, “Alexa Web Search”, “Alexa Web Information Service”, “Alexa Top Sites”, “Alexa Site Thumbnail”, “Amazon FWS”, “Amazon Fulfillment Web Service”, “Amazon Associates Web Service”, and other AWS graphics, logos, page headers, button icons, scripts, and service names are trademarks, registered trademarks or trade dress of AWS in the U.S. and/or other countries. AWS’s trademarks and trade dress may not be used in connection with any product or service that is not AWS’s, in any manner that is likely to cause confusion among customers, or in any manner that disparages or discredits AWS. All other trademarks not owned by AWS that appear on this Site are the property of their respective owners, who may or may not be affiliated with, connected to, or sponsored by AWS.

One or more patents owned by Amazon.com, Inc. or its affiliates may apply to the AWS Site and to the features and services accessible via the AWS Site. Portions of the AWS Site may operate under license of one or more patents. Click here to see a non-exhaustive list of applicable Amazon patents and applicable licensed patents. 

AWS grants you a limited license to access and make personal use of the AWS Site and not to download (other than page caching) or modify it, or any portion of it, except with express written consent of AWS. This license does not include any resale or commercial use of the AWS Site or its contents; any derivative use of the AWS Site or its contents; any downloading or copying of account information; or any use of data mining, robots, or similar data gathering and extraction tools. Unless otherwise specified by AWS in a separate license, your right to use any software, data, documentation or other materials that you access or download through the AWS Site is subject to these Site Terms or, if you have an AWS account, the Agreement.

The AWS Site or any portion of the AWS Site may not be reproduced, duplicated, copied, sold, resold, visited, or otherwise exploited for any commercial purpose without express written consent of AWS. You may not frame or utilize framing techniques to enclose any trademark, logo, or other proprietary information (including images, text, page layout, or form) of AWS without express written consent. You may not use any meta tags or any other “hidden text” utilizing AWS’s name or trademarks without the express written consent of AWS. Any unauthorized use terminates the permission or license granted by AWS. You are granted a limited, revocable, and nonexclusive right to create a hyperlink to the home page of the AWS Site, so long as the link does not portray AWS, or its products or services in a false, misleading, derogatory, or otherwise offensive matter. You may not use any AWS logo or other proprietary graphic or trademark as part of the link without express written permission.

If you use the AWS Site, you are responsible for maintaining the confidentiality of your AWS account and password and for restricting access to your computer, and you agree to accept responsibility for all activities that occur under your account or password. AWS reserves the right to refuse service, terminate accounts, remove or edit content in its sole discretion.

Visitors may post reviews, comments and other content; and submit suggestions, ideas, comments, questions, or other information, so long as the content is not illegal, obscene, threatening, defamatory, invasive of privacy, infringing of intellectual property rights, or otherwise injurious to third parties or objectionable and does not consist of or contain software viruses, political campaigning, commercial solicitation, chain letters, mass mailings, or any form of “spam.” You may not use a false e-mail address, impersonate any person or entity, or otherwise mislead as to the origin of a card or other content. AWS reserves the right (but not the obligation) to remove or edit such content, but does not regularly review posted content. If you do post content or submit material, and unless we indicate otherwise, you grant AWS a nonexclusive, royalty-free, perpetual, irrevocable, and fully sublicensable right to use, reproduce, modify, adapt, publish, translate, create derivative works from, distribute, and display such content throughout the world in any media. You grant AWS and sublicensees the right to use the name that you submit in connection with such content, if they choose.

You and third parties may be permitted to upload certain software (including machine images), data, text, audio, video, images or other content (“Third Party Content”) to community areas of the AWS Site. You acknowledge that (a) AWS has not tested or screened Third Party Content, (b) you use any Third Party Content is at your sole risk, and© Third Party Content may be subject to separate license terms as determined by the person posting such content.

You represent and warrant that you own or otherwise control all of the rights to the content, including any Third Party Content, that you post; that the content is accurate; that use of the content you supply does not violate this policy and will not cause injury to any person or entity; and that you will indemnify AWS for all claims resulting from content you supply. AWS has the right but not the obligation to monitor and edit or remove any activity or content. AWS takes no responsibility and assumes no liability for any content posted by you or any third party.

AWS respects the intellectual property of others. If you believe that your work has been copied in a way that constitutes copyright infringement, please follow our Notice and Procedure for Making Claims of Copyright Infringement.

THE AWS SITE AND ALL INFORMATION, CONTENT, MATERIALS, PRODUCTS (INCLUDING ANY SOFTWARE) AND SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THIS SITE ARE PROVIDED BY AWS ON AN “AS IS” AND “AS AVAILABLE” BASIS, UNLESS OTHERWISE SPECIFIED IN THE AGREEMENT. AWS MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, AS TO THE OPERATION OF THIS SITE OR THE INFORMATION, CONTENT, MATERIALS, PRODUCTS (INCLUDING ANY SOFTWARE) OR SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE AWS SITE, UNLESS OTHERWISE SPECIFIED IN WRITING. YOU EXPRESSLY AGREE THAT YOUR USE OF THIS SITE IS AT YOUR SOLE RISK. TO THE FULL EXTENT PERMISSIBLE BY APPLICABLE LAW, AWS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. AWS DOES NOT WARRANT THAT THIS SITE; INFORMATION, CONTENT, MATERIALS, PRODUCTS (INCLUDING ANY SOFTWARE) OR SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE AWS SITE; ITS SERVERS; OR E-MAIL SENT FROM AWS ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. AWS WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND ARISING FROM THE USE OF THE AWS SITE OR FROM ANY INFORMATION, CONTENT, MATERIALS, PRODUCTS (INCLUDING SOFTWARE) OR SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE AWS SITE, INCLUDING, BUT NOT LIMITED TO DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, AND CONSEQUENTIAL DAMAGES, UNLESS OTHERWISE SPECIFIED IN THE AGREEMENT. CERTAIN STATE LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.

By visiting the AWS Site, you agree that the laws of the state of Washington, without regard to principles of conflict of laws, will govern these Site Terms and any dispute of any sort that might arise between you and AWS.

Any dispute relating in any way to your visit to the AWS Site or to services provided by AWS or through the AWS Site in which the aggregate total claim for relief sought on behalf of one or more parties exceeds $7,500 shall be adjudicated in any state or federal court in King County, Washington, and you consent to exclusive jurisdiction and venue in such courts.

Please review our other policies on the AWS Site. These policies also govern your visit to the AWS Site. We reserve the right to make changes to the AWS Site, policies, and these Site Terms at any time. If any of these conditions shall be deemed invalid, void, or for any reason unenforceable, that condition shall be deemed severable and shall not affect the validity and enforceability of any remaining condition.

Amazon Web Services, Inc.
P.O. Box 81226
Seattle, WA 98108-1226
http://aws.amazon.com

If you believe that your work has been copied in a way that constitutes copyright infringement, please provide our copyright agent the written information specified below. Please note that this procedure is exclusively for notifying AWS that your copyrighted material has been infringed.

  • An electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest;
  • A description of the copyrighted work that you claim has been infringed upon;
  • A description of where the material that you claim is infringing is located on the Site;
  • Your address, telephone number, and e-mail address;
  • A statement by you that you have a good-faith belief that the disputed use is not authorized by the copyright owner, its agent, or the law;
  • A statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf.


AWS’s Copyright Agent for notice of claims of copyright infringement can be reached as follows:

Copyright Agent/Amazon Web Services
Amazon.com Legal Department
P.O. Box 81226
Seattle, WA 98108
phone: (206) 266-4064
fax: (206) 266-7010
e-mail: abuse@amazonaws.com

Courier address:
Copyright Agent/Amazon Web Services
Amazon.com Legal Department
410 Terry Avenue North
Seattle, WA 98109-5210
USA


#####EOF##### #####EOF##### Support Technology and Programs for AWS | AWS Support

AWS Support

Get expert guidance and assistance achieving your objectives. AWS Support provides people, technology, and programs to help you achieve success.

Customer Obsession at Work

AWS Support brings Amazon’s tradition of customer-obsession to the B2B technology world. We focus on helping you achieve the outcomes you need to make your business successful.

At AWS, Support goes beyond break-fix and issue resolution. AWS Support provides a mix of tools and technology, people, and programs designed to proactively help you optimize performance, lower costs, and innovate faster. We save time for your team by helping you to move faster in the cloud and focus on your core business.

 

AWS Support In Our Customers' Words

Benefits

Move Faster With AWS

Use AWS experts to quickly build up knowledge and expertise.
AWS Support helps you stay agile with architectural guidance as you build applications and solutions. Have a question or need help? Just ask - our cloud support engineers and subject matter experts are here with answers and guidance. They are looking around the corner to identify new ways AWS can help your business.

Automate Management of Your Environment

Proactively monitor your environment and automate remediation.
AWS Support provides tools such as AWS Personal Health Dashboard and AWS Trusted Advisor to help you keep your environment running optimally. These tools proactively alert you about ways to improve security, optimize performance, and reduce costs.

Focus on What Matters

Focus on your business. Let us focus on your infrastructure.
You don't have time to be worried about your cloud infrastructure. You need to manage your business and find ways to innovate. With AWS Support, you can put your energy where it belongs - with your customers and your business. We will take care of the infrastructure for you and help you to keep it running efficiently, securely, and in a manner your business demands.

Manage and Mitigate Risks

Stay secure. Avoid downtime.
Your cloud infrastructure must have airtight security and be ready for whatever your business may demand of it. AWS Support can help you maintain the strictest security standards and proactively alert you to issues that require attention. We can also help you plan to ensure you can meet the demands of your customers with architectural and operational guidance to optimize performance.  

Customer Testimonials

fanduel-thumb

FanDuel uses AWS Support for architectural guidance and expertise in order to focus on building value for its customers. AWS Support helps FanDuel scale up for critical events like the NFL season launch and even helped reduce infrastructure costs by 50%.

Watch the video >>

wirelesscar-thumb

WirelessCar partners with AWS Support to improve its architecting of applications and improve its utilization of AWS services, all while reducing costs and ensuring optimal performance.

 

Watch the video >>

pitneybowes-thumb

Pitney Bowes uses AWS Support for architectural guidance as it builds new applications, avoiding critical mistakes and designing for optimal performance. AWS Support helps Pitney Bowes create solutions that delight its customers.


Watch the video >>

Autodesk-thumb

AUTODESK thinks of AWS Support as its virtual infrastructure support team as if it were another department within AUTODESK. AWS Support provides AUTODESK a level of direct personal attention that has had a transformational effect.


Watch the video >>

To learn more about how AWS Support helps customers achieve their objectives with AWS, see the full library of customer video testimonials

AWS Support: Your Partner For Success

At AWS, Support goes well beyond helping you fix issues. We are determined to make our customers successful on their cloud journey and answer requests that range from answering best practices questions, guidance on configuration, all the way to break-fix and problem resolution.

It is our approach to Support that sets AWS apart. We are focused on helping you use AWS in the best possible ways to achieve your business outcomes. Sometimes that means helping you troubleshoot an issue, but more often, it involves "looking around corners" to find ways for you to better utilize AWS services.

High Quality Engineers. Deep Bench of Expertise.

Highly-trained engineers, large network of subject-matter experts.
At AWS, we hire smart Cloud Support Engineers that are well versed in DevOps technologies, automation, infrastructure orchestration, configuration management and continuous integration, and who are not constrained by how “things are usually done”. Cloud Support Engineers held to same standard for technical aptitude as AWS software development organization.  
 
We also have a vast network of subject-matter experts ranging from Solutions Architects to product managers that can come off the bench to help you as needed.

Smooth Technical Support Experience

Engineers empowered to help you achieve your goals.
At AWS, Cloud Support Engineers do not simply follow a run-book. Rather, AWS engineers stay with Support cases from the start all the way through to resolution. This model avoids the need for escalation paths typically employed by support organizations and eliminates the need for customers to interface with multiple support engineers, which can slow down time-to-resolution and allow you to move faster in your cloud journey.

Learn About AWS Cloud Support Engineers

Scope of AWS Support

Our AWS Technical Support tiers cover development and production issues for AWS products and services, along with other key stack components:

  • "How to" questions about AWS services and features
  • Best practices to help you successfully integrate, deploy, and manage applications in the cloud
  • Troubleshooting API and AWS SDK issues
  • Troubleshooting operational or systemic problems with AWS resources
  • Issues with our Management Console or other AWS tools
  • Problems detected by EC2 health checks
  • A number of third-party applications such as OS, web servers, email, VPN, databases, and storage configuration

AWS Support does not include:

  • Code development
  • Debugging custom software
  • Performing system administration tasks
  • Database query tuning
#####EOF##### Overview | Cloud Computing | AWS Oil & Gas

AWS for Oil & Gas

Cloud computing to enable digital transformation and fuel innovation in Oil and Gas

With Amazon Web Services (AWS), Oil and Gas companies can accelerate digital transformation, unleash innovation to optimize production and profitability, and improve cost and operational efficiencies necessary to compete under the pressures of today’s global energy market.

AWS allows Oil and Gas companies to streamline and reinvent complex, customized IT workflows to thrive despite low prices, shrinking margins, and market volatility. Explorers can extract deep insights faster to improve field planning, geoscientists can run more demanding HPC workflows and identify potential reservoirs faster and cheaper, and refineries can optimize production with predictive maintenance and predictive inventory planning. Energize the Oil & Gas business and kick start innovation with Amazon Web Services.

What's new

Machine Learning Applications in Exploration & Production

AWS advanced machine learning and HPC tools allow oil and gas companies to reduce the time required for seismic data processing from several months to a few days, creating more accurate 3D models of rock and fluid properties that far surpass traditional methods. Learn more about how to tranform exploration and production with AWS machine learning.

Download the solution brief »

IDC Technology Spotlight: Cloud in the Transformation of Upstream Oil and Gas

There are various approaches and strategies that lead to an acceleration of digital transformation in oil and gas companies. IDC believes that cloud-enabled technologies provide the ability to rapidly develop applications that can access data across the enterprise. This Technology Spotlight will focus on showing how leading oil and gas companies should prioritize transformational technologies.

Download the whitepaper »

Porosity Prediction Demo

Porosity, permeability, density, and other rock properties are critical pieces of data required to effectively locate and extract oil. However, explorers have incomplete data across horizons because data is collected only at well locations. Machine Learning (ML) can help automatically enhance incomplete datasets by predicting missing data based on known data, thereby accelerating time to first oil and optimizing production. Learn how AWS machine learning can be used to generate and enhance incomplete datasets.

Watch the demo »

High Performance Computing (HPC) eBook

With HPC on AWS, you can start innovating the way you have always wanted. Whether it is finding oil (seismic processing), producing oil (reservoir simulation), or optimizing production (wellbore, pipeline and facilities simulation), you can stop worrying about the constraints of High Performance Computing (HPC) infrastructure cost and capacity.

Download the eBook »

Explore benefits in the Oil & Gas Value Chain

Oil-Gas_Upstream_Segment

Upstream

Accelerate deeper geological insights to improve decision making in exploration and production, and yield more productive oil extraction. Automate time-consuming processes, and achieve results with greater accuracy.

Sample Use Cases:

  • Drilling. Reduce drilling hazards, improve productivity and efficiency.
  • Reservoir Simulation. Run models faster and cheaper, optimize extraction, collaborate with ease, improve safety, improve project execution efficiencies.
Oil-Gas_Midstream_Segment

Midstream

AWS provides the tools to help midstream pipeline operators increase operational efficiency and compliance in areas such as LNG and gas transportation, pipeline integrity management, and workforce management.

Sample Use Cases:

  • Predictive Maintenance. Reduce downtime due to corrosion and other pipeline issues.
  • Pipeline Monitoring. Ingest data from SCADA to effectively manage and optimize pipelines.
Oil-Gas_Downstream_Segment

Downstream

AWS provides tools to help refineries, petroleum delivery operators, gas retailers, and other downstream oil and gas companies improve cost and operational efficiencies and improve profitability.

Sample Use Cases:

  • Single View of the Customer. Collect valuable customer preferences and purchasing data to better engage your customers at every gas station location.
  • Trading Optimization. Optimize trading and risks analysis with HPC on AWS.

Benefits

Reduce time to first oil

Accelerate and optimize exploration, drilling, and production by using AWS machine learning and big data tools to quickly and easily extract powerful insights from structured and unstructured seismic data. This automates time-consuming, error-prone manual tasks, and improves the speed and accuracy of decision making.

More sensors and data

AWS IoT allows you to improve operational efficiencies by connecting sensors at scale, such as with predictive maintenance of pumps in the oilfield and in retail gas stations. And with nearly limitless high performance computing resources, you can quickly process and visualize this growing set of data to generate insights to improve profitability and competitive differentiation.

Reduce the cost per barrel

The AWS global footprint, with its efficiencies from automation and economies of scale, passes on savings to you while reducing management overhead, so you can improve profitability in spite of shrinking budgets. From ML to IoT to storage services, leverage a broad range of AWS services to lower costs while increasing production.

Security and compliance

As an AWS customer, you will benefit from a data center and network architecture built to meet the requirements of the most security-sensitive organizations. AWS supports a broad and complete set of security and compliance programs including NIST and ISO, which help protect business critical data like seismic and trading. The AWS Cloud spans the globe, making it easy to meet regional compliance and data residency requirements.

The Digital Oilfield of the Future: Solutions for the Modern Oil & Gas Company

Learn how oil and gas companies of all sizes are partnering with AWS to run business and technical workflow sin upstream, midstream, and downstream. 

Case studies

Leading oil & gas companies are innovating with Amazon Web Services.

Learn more »

600x400_BP_Logo
600x400_Hess
600x400_Woodside_Logo
600x400_TechnipFMC_Logo
600x400_Shell_Logo
600x400_Willbros_Logo
600x400_GE-Oil-Gas_Logo
600x400_SeaOil_Logo

Get started

Leading companies in the oil & gas industry are already using AWS. Contact our experts and start your own AWS Cloud journey today.

#####EOF##### AWS Analyst Reports
Filter by:
Clear all
Filter
Filter
Filter
Filter
Filter
No reports found matching that criteria.
Publish Date
  • Publish Date
  • Headline (A-Z)
  • Headline (Z-A)
1 …
…

Additional Resources

AWS Content

Whitepapers | Explore a host of documents written by independent analysts, the AWS team, and the AWS community on product introductions, framework overviews, and more.

AWS in the News | Catch up on the latest AWS news announced by Forbes, TechCrunch, ZDNet, and other media outlets.

What's New | Stay up to date on the latest AWS product and service announcements.

AWS Podcast | Listen and learn about AWS with hosts Simon Elisha & Jeff Barr. Each podcast includes AWS news, tech tips, and interviews with startups, AWS partners, and AWS employees.

Peer Reviews

With the rapid growth of review platforms for software vendors among individual developers, start-ups, and enterprises around the world, customers are asking for AWS ratings backed by other users. Peer review platforms like G2 Crowd and Gartner Peer Insights allow veteran and new AWS users to join a growing, dynamic community to answer questions, share ideas, and learn about new services and best practices.

G2 Crowd | Compare AWS services and read reviews by customers based on satisfaction ratings and user experiences.

Gartner Peer Insights | Read what enterprise customers and IT professionals think about AWS on this review platform hosted by Gartner Research.  

#####EOF##### Quick Starts - Amazon Web Services (AWS)
aws-quickstart-graphic

AWS Quick Starts

Automated, gold-standard deployments in the AWS Cloud

Quick Starts are built by AWS solutions architects and partners to help you deploy popular technologies on AWS, based on AWS best practices for security and high availability. These accelerators reduce hundreds of manual procedures into just a few steps, so you can build your production or test environment quickly and start using it immediately.

Available Quick Starts:

1 …
…
#####EOF##### Let My People Go Surfing: The Education of a Reluctant Businessman--Including 10 More Years of Business Unusual Updated 2nd edition, Yvon Chouinard, Naomi Klein - Amazon.com

Buying Options

Kindle Price: $15.99

Save $4.01 (20%)

These promotions will be applied to this item:

Some promotions may be combined; others are not eligible to be combined with other offers. For details, please see the Terms & Conditions associated with these promotions.

Deliver to your Kindle or other device

Buy for others

Give as a gift or purchase for a team or group. Learn more

Buying and sending eBooks to others


Select quantity
Buy and send eBooks
Recipients can read on any device

Additional gift options are available when buying one eBook at a time. Learn more


These ebooks can only be redeemed by recipients in the US. Redemption links and eBooks cannot be resold.

Quantity:
This item has a maximum order quantity limit.

Deliver to your Kindle or other device

<Embed>
Kindle App Ad
Let My People Go Surfing: The Education of a Reluctant Businessman--Including 10 More Years of Business Unusual by [Chouinard, Yvon]

Follow the Author

Something went wrong. Please try your request again later.


Let My People Go Surfing: The Education of a Reluctant Businessman--Including 10 More Years of Business Unusual Kindle Edition

4.6 out of 5 stars 396 customer reviews

See all 2 formats and editions Hide other formats and editions
Price
New from Used from
Kindle
$15.99

Length: 269 pages Word Wise: Enabled Enhanced Typesetting: Enabled
Page Flip: Enabled
  • Due to its large file size, this book may take longer to download

An Amazon Book with Buzz: "Maybe You Should Talk to Someone"
"This is a daring, delightful, and transformative book." ―Arianna Huffington, Founder, Huffington Post Learn more
click to open popover

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton


Editorial Reviews

Review

"Wonderful... a moving autobiography, the story of a unique business, and a detailed blueprint for hope." --Jared Diamond, Pulitzer Prize-winning author of Guns, Germs, and Steel

"For everyone who is alternately outraged and depressed by the wave of greed that has been the hallmark of corporate America in the twenty-first century, there is a name that inspires hope: Yvon Chouinard....Unique and compelling." --San Francisco Chronicle

"Chouinard's biography, Let My People Go Surfing, reveals a fascinating and colorful character....For all of our sakes, it seems the responsible thing for companies to do is follow Chouinard's ascent." --USA Today

"No matter what you do, you will find essential guidance and inspiration in Let My People Go Surfing." --Dave Foreman, The Rewilding Institute

About the Author

Yvon Chouinard is the founder and owner of Patagonia, Inc., based in Ventura, California.  He began in business by designing, manufacturing, and distributing rock climbing equipment in the late 1950s. His tinkering led to an improved ice ax that is the basis for modern ice ax design. In 1964 he produced his first mail-order catalog, a one-page mimeographed sheet containing advice not to expect fast delivery during climbing season. In 2001, along with Craig Mathews, owner of West Yellowstone's Blue Ribbon Flies, he started One Percent for the Planet, an alliance of businesses that contribute at least 1 percent of their net annual sales to groups on a list of researched and approved environmental organizations.

Product details

  • File Size: 142838 KB
  • Print Length: 269 pages
  • Page Numbers Source ISBN: 0143109677
  • Publisher: Penguin Books; Updated 2nd edition edition (September 6, 2016)
  • Publication Date: September 6, 2016
  • Sold by: Penguin Group (USA) LLC
  • Language: English
  • ASIN: B01A6EQFZ8
  • Text-to-Speech: Enabled
  • X-Ray:
  • Word Wise: Enabled
  • Lending: Not Enabled
  • Screen Reader: Supported
  • Enhanced Typesetting: Enabled
  • Amazon Best Sellers Rank: #15,752 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  • Would you like to tell us about a lower price?


396 customer reviews

4.6 out of 5 stars

By customer groups & interests
Surfing
4.3
Book Series
4.6

Review this product

Share your thoughts with other customers

Read reviews that mention

February 26, 2018
Format: PaperbackVerified Purchase
9 people found this helpful
Comment Report abuse
December 26, 2018
Format: Kindle EditionVerified Purchase
5 people found this helpful
Comment Report abuse
November 12, 2017
Format: Kindle EditionVerified Purchase
4 people found this helpful
Comment Report abuse
February 25, 2018
Format: Audible AudiobookVerified Purchase
2 people found this helpful
Comment Report abuse
July 28, 2014
Format: PaperbackVerified Purchase
3 people found this helpful
Comment Report abuse
September 4, 2018
Format: Kindle EditionVerified Purchase
One person found this helpful
Comment Report abuse

Set up an Amazon Giveaway

Let My People Go Surfing: The Education of a Reluctant Businessman--Including 10 More Years of Business Unusual
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Let My People Go Surfing: The Education of a Reluctant Businessman--Including 10 More Years of Business Unusual

#####EOF##### Amazon.com : Aesop Ginger Flight Therapy, 0.32 Ounce : Skincare : Beauty
Available from these sellers.



Aesop Ginger Flight Therapy, 0.32 Ounce

by Aesop
3.6 out of 5 stars 3 customer reviews

About the product
  • Features sense invigorating, mind pacifying and aromatic uplift properties
  • Helps comfort and relieve stressed feelings during a flight journey
  • Eases fatigue after a hard working day in the office
Amazon FSA Store


Have a question?

Find answers in product info, Q&As, reviews

Please make sure that you are posting in the form of a question.

Don't see what you're looking for?
There was a problem completing your request. Please try your search again later.
All Product Information Customer Q&A's Customer Reviews

Product description

A refreshing pulse point therapy for in-flight or office use. Features sense invigorating, mind pacifying and aromatic uplift properties. Helps comfort and relieve stressed feelings during a flight journey. Eases fatigue after a hard working day in the office. Perfectly fits into handbag with its pocket-size.


Product details

  • Product Dimensions: 2 x 3 x 6 inches ; 0.32 ounces
  • Shipping Weight: 0.6 ounces
  • Domestic Shipping: Currently, item can be shipped only within the U.S. and to APO/FPO addresses. For APO/FPO shipments, please check with the manufacturer regarding warranty and support issues.
  • International Shipping: This item is not eligible for international shipping. Learn More
  • ASIN: B000IB0H8G
  • Item model number: 9319944598889
  • Average Customer Review: 3.6 out of 5 stars 3 customer reviews
  • Amazon Best Sellers Rank: #715,515 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)
  • Product Warranty: For warranty information about this product, please click here

    Would you like to tell us about a lower price?


Customer Questions & Answers

3 customer reviews

3.6 out of 5 stars

Review this product

Share your thoughts with other customers

August 9, 2012
Verified Purchase
2 people found this helpful
Comment Report abuse
March 14, 2013
Verified Purchase
One person found this helpful
Comment Report abuse
October 16, 2013
Verified Purchase
One person found this helpful
Comment Report abuse
Amazon FSA Store

Pages with related products. See and discover other items: aesop products

Disclaimer: While we work to ensure that product information is correct, on occasion manufacturers may alter their ingredient lists. Actual product packaging and materials may contain more and/or different information than that shown on our Web site. We recommend that you do not solely rely on the information presented and that you always read labels, warnings, and directions before using or consuming a product. For additional information about a product, please contact the manufacturer. Content on this site is for reference purposes and is not intended to substitute for advice given by a physician, pharmacist, or other licensed health-care professional. You should not use this information as self-diagnosis or for treating a health problem or disease. Contact your health-care provider immediately if you suspect that you have a medical problem. Information and statements regarding dietary supplements have not been evaluated by the Food and Drug Administration and are not intended to diagnose, treat, cure, or prevent any disease or health condition. Amazon.com assumes no liability for inaccuracies or misstatements about products.


#####EOF##### Darkness Visible: A Memoir of Madness - Kindle edition by William Styron. Health, Fitness & Dieting Kindle eBooks @ Amazon.com.

Buying Options

Digital List Price: $17.99
Kindle Price: $2.99

Save $15.00 (107%)

These promotions will be applied to this item:

Some promotions may be combined; others are not eligible to be combined with other offers. For details, please see the Terms & Conditions associated with these promotions.

Deliver to your Kindle or other device

Buy for others

Give as a gift or purchase for a team or group. Learn more

Buying and sending eBooks to others


Select quantity
Buy and send eBooks
Recipients can read on any device

Additional gift options are available when buying one eBook at a time. Learn more


These ebooks can only be redeemed by recipients in the US. Redemption links and eBooks cannot be resold.

Quantity:
This item has a maximum order quantity limit.

Deliver to your Kindle or other device

<Embed>
Kindle App Ad
Darkness Visible: A Memoir of Madness by [Styron, William]
Audible Sample
Playing...
Loading...
Paused

Follow the Author

Something went wrong. Please try your request again later.


Darkness Visible: A Memoir of Madness Kindle Edition

4.4 out of 5 stars 500 customer reviews

See all 18 formats and editions Hide other formats and editions
Price
New from Used from
Kindle
$2.99

Length: 98 pages Word Wise: Enabled Enhanced Typesetting: Enabled
Page Flip: Enabled Audible book:
Audible book
Switch back and forth between reading the Kindle book and listening to the Audible book with Whispersync for Voice. Add the Audible book for a reduced price of $7.49 when you buy the Kindle book.
Available

An Amazon Book with Buzz: "Maybe You Should Talk to Someone"
"This is a daring, delightful, and transformative book." ―Arianna Huffington, Founder, Huffington Post Learn more
click to open popover

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton


Editorial Reviews

Amazon.com Review

In 1985 William Styron fell victim to a crippling and almost suicidal depression, the same illness that took the lives of Randall Jarrell, Primo Levi and Virginia Woolf. That Styron survived his descent into madness is something of a miracle. That he manages to convey its tortuous progression and his eventual recovery with such candor and precision makes Darkness Visible a rare feat of literature, a book that will arouse a shock of recognition even in those readers who have been spared the suffering it describes.

From Publishers Weekly

A meditation on Styron's ( Sophie's Choice ) serious depression at the age of 60, this essay evokes with detachment and dignity the months-long turmoil whose symptoms included the novelist's "dank joylessness," insomnia, physical aversion to alcohol (previously "an invaluable senior partner of my intellect") and his persistent "fantasies of self-destruction" leading to psychiatric treatment and hospitalization. The book's virtues--considerable--are twofold. First, it is a pitiless and chastened record of a nearly fatal human trial far commoner than assumed--and then a literary discourse on the ways and means of our cultural discontents, observed in the figures of poet Randall Jarrell, activist Abbie Hoffman, writer Albert Camus and others. Written by one whose book-learning proves a match for his misery, the memoir travels fastidiously over perilous ground, receiving intimations of mortality and reckoning delicately with them. Always clarifying his demons, never succumbing to them in his prose, Styron's neat, tight narrative carries the bemusement of the worldly wise suddenly set off-course--and the hard-won wisdom therein. In abridged form, the essay first appeared in Vanity Fair.
Copyright 1990 Reed Business Information, Inc.

Product details

  • File Size: 3725 KB
  • Print Length: 98 pages
  • Publisher: Open Road Media (May 4, 2010)
  • Publication Date: May 4, 2010
  • Sold by: Amazon Digital Services LLC
  • Language: English
  • ASIN: B00BBPVYUS
  • Text-to-Speech: Enabled
  • X-Ray:
  • Word Wise: Enabled
  • Lending: Enabled
  • Screen Reader: Supported
  • Enhanced Typesetting: Enabled
  • Amazon Best Sellers Rank: #12,761 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  • Would you like to tell us about a lower price?


500 customer reviews

4.4 out of 5 stars

By customer groups & interests
Memoirs
4.3
Mental Health
4.3
Book Series
4.4

Review this product

Share your thoughts with other customers

Read reviews that mention

November 25, 2016
Format: Kindle EditionVerified Purchase
70 people found this helpful
Comment Report abuse
October 28, 2016
Format: PaperbackVerified Purchase
42 people found this helpful
Comment Report abuse
August 10, 2016
Format: Kindle EditionVerified Purchase
24 people found this helpful
Comment Report abuse
November 5, 2017
Format: PaperbackVerified Purchase
34 people found this helpful
Comment Report abuse
December 17, 2017
Format: Kindle EditionVerified Purchase
12 people found this helpful
Comment Report abuse
July 28, 2018
Format: HardcoverVerified Purchase
9 people found this helpful
Comment Report abuse
May 4, 2015
Format: Kindle EditionVerified Purchase
20 people found this helpful
Comment Report abuse
August 7, 2016
Format: Kindle EditionVerified Purchase
9 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

Darkness Visible: A Memoir of Madness
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Darkness Visible: A Memoir of Madness

#####EOF##### Whitepapers – Amazon Web Services (AWS)
rule

Expand your knowledge of the cloud with AWS technical whitepapers authored by AWS, independent analysts, and the AWS Community.

Explore our library of reports and whitepapers authored by industry analysts at AWS Analyst Reports.  


Amazon Aurora MySQL Database Administrator's Handbook: Connection Management
March 2019  |  PDF
Best practices for managing database connections, setting server connection parameters, and configuring client programs, drivers, and connectors.

Security Overview of AWS Lambda
March 2019  |  PDF
Take a deep dive into the AWS Lambda service through a security lens to get a well-rounded picture of the service, as well as deepening your understanding of AWS Lambda.

Understanding T2 Standard Instance CPU Credits
March 2019  |  PDF
Describes how a T2 Standard instance earns CPU credits, how launch credits are granted, and how those launch and earned CPU credits are spent.

Best Practices for Deploying Microsoft SQL Server
on AWS
March 2019  |  PDF
Guidance and best practices for deploying Microsoft SQL Server on AWS.

Homelessness and Technology
March 2019  |  PDF
Best practices for how communities can use technology to prevent and combat homelessness.

Leveraging Amazon Chime Voice Connector for SIP Trunking
March 2019  | PDF
Describes the features and benefits of Amazon Chime Voice Connector, a service that carries your voice traffic over the internet and elastically scales to meet your capacity needs.

File Gateway for Hybrid Cloud Storage Architectures
March 2019  |  PDF
Overview and best practices for building hybrid environments using AWS Storage Gateway in a file gateway configuration.

  • Overview of Amazon Web Services (December 2018)    HTML  |  PDF
    • Overview of all AWS services.
  • AWS Well-Architected Framework (November 2018)    PDF
    • Overview of the Well-Architected Framework to validate your architecture.
  • An Overview of the AWS Cloud Adoption Framework (February 2017)    PDF
    • Framework to help you be successful adopting AWS.
  • AWS Security Best Practices (August 2016)    PDF
    • Authoritative guidance for security when using AWS services.
  • AWS Storage Services Overview (December 2016)    PDF
    • Overview of storage solutions available from AWS.
  • How AWS Pricing Works (June 2018)    PDF
    • Guidance on using the AWS Simple Monthly Calculator to estimate monthly AWS usage costs.
  • How AWS Pricing Works (June 2018)    PDF
    • Guidance on using the AWS Simple Monthly Calculator to estimate monthly AWS usage costs.
  • Laying the Foundation: Setting Up Your Environment for Cost Optimization (March 2018)    HTML | PDF
    • Discusses the pillars of cost optimization and the key mechanisms for achieving them.
  • Cost Management in the AWS Cloud (March 2018)    HTML | PDF
    • Provides an overview of many AWS cost management tools, as well as organizational best practices for creating a cost-conscious mindset.
  • Amazon EC2 Reserved Instances and Other Reservation Models (March 2018)    HTML | PDF
    • Discusses Amazon EC2 Reserved Instances and reservation models for other AWS services.
  • Leveraging Amazon EC2 Spot Instances at Scale (March 2018) HTML | PDF
    • Provides an overview of Amazon EC2 Spot Instances, as well as best practices for using them effectively.
  • Creating a Culture of Cost Transparency and Accountability (March 2018)   
    HTML | PDF
    • Discusses the tools, best practices, and tips that your organization can use to create a lean cost culture and maximize the benefits of the cloud.
  • Automating Elasticity (March 2018)    HTML | PDF
    • Discusses how you can automate elasticity to get the most value out of your AWS resources and optimize costs.
  • Right Sizing: Provisioning Instances to Match Workloads (March 2018)    HTML | PDF
    • Discusses how to provision instances to match your workload performance and capacity requirements to optimize costs.
  • AWS Storage Optimization (March 2018)    HTML | PDF
    • Discusses how to choose and optimize AWS storage services to meet your data storage needs and help you save costs.
  • 10 Considerations for a Cloud Procurement (March 2017)    PDF
    • A top 10 list of cloud procurement considerations for public sector.
  • Maximizing Value with AWS (February 2017)    PDF
    • Achieve Total Cost of Operation Benefits Using Cloud Computing
  • AWS Well-Architected Framework - Cost Optimization Pillar (July 2018)    PDF
    • Details for validating the cost/value aspects of your architecture.
  • AWS Well-Architected Framework - Security Pillar (July 2018)    PDF
    • Details for validating the security aspects of your architecture.
  • Architecting for Genomic Data Security and Compliance in AWS (December 2014)    PDF
  • Introduction to Auditing the Use of AWS (October 2015)    PDF
    • Auditing security checklist
  • Automating Governance on AWS (August 2015)    PDF
  • AWS Answers to Key Compliance Questions (January 2017)    PDF
  • AWS Best Practices for DDoS Resiliency (December 2018)   PDF  
  • AWS Certifications, Programs, Reports, and Third-Party Attestations (March 2017)    PDF
  • AWS Key Management Service Best Practices  (April 2017)    PDF
  • AWS Operational Resilience (March 2019)    PDF
  • AWS Risk & Compliance (May 2017)    PDF  
  • AWS Risk and Compliance Overview (January 2017)    PDF
  • AWS Security Best Practices  (August 2016)    PDF  
  • AWS: Overview of Security Processes (May 2017)    PDF  
  • AWS Security Checklist    PDF
  • Breaking Intrusion Kill Chains with AWS (February 2019)    PDF
  • Breaking Intrusion Kill Chains with AWS Reference Material (February 2019)    PDF
  • Introduction to AWS Security (July 2015)    PDF  
  • Introduction to AWS Security Processes (June 2016)    PDF
  • NIST Cybersecurity Framework (CSF) (January 2019)    PDF
  • Overview of AWS Security - Analytics, Mobile, and Application Services (June 2016)    PDF
  • Overview of AWS Security - Application Services (June 2016)    PDF
  • Overview of AWS Security - Compute Services (June 2016)    PDF
  • Overview of AWS Security - Database Services (June 2016)    PDF
  • Overview of AWS Security - Network Services (August 2016)    PDF
  • Overview of AWS Security - Storage Services (June 2016)    PDF
  • Secure Content Delivery with CloudFront (November 2016)    PDF
  • Encrypting Data at Rest (November 2014)    PDF  
  • Security at Scale: Governance in AWS (October 2015)    PDF
  • Security at Scale: Logging in AWS (October 2015)    PDF
  • AWS Governance at Scale (November 2018) HTML | PDF
  • CSA Consensus Assessments Initiative Questionnaire (May 2017)    PDF
  • Architecting for HIPAA Security and Compliance on AWS  (November 2017)    PDF  
  • Criminal Justice Information Service Compliance on AWS (March 2017)    PDF
  • DoD-Compliant Implementations in the AWS Cloud (April 2015)    PDF
  • Understanding the ASD’s Cloud Computing Security for Tenants in the Context of AWS (June 2017)    PDF
  • Using AWS in the Context of NCSC UK’s Cloud Security Principles (October 2016)    PDF
  • Using AWS in the Context of UK Healthcare IG SoC Process (May 2016)    PDF
  • AWS Response to CACP Information and Communication Technology Sub-Committee  (May 2017)    PDF
  • AWS User Guide to Financial Services Regulations & Guidelines in Hong Kong - Insurance Authority (October 2017)    PDF
  • AWS User Guide to Financial Services Regulations & Guidelines in Hong Kong - Monetary Authority (November 2017)    PDF
  • AWS User Guide to Financial Services Regulations & Guidelines in Singapore (July 2017)    PDF
  • Considerations for Using AWS Products in GxP Systems (January 2016)   PDF
  • Federal Financial Institutions Examination Council (FFIEC) Audit Guide (October 2015)    PDF
  • Guidance for Trusted Internet Connection (TIC) Readiness on AWS (February 2016)    PDF
  • Introduction to AWS Security by Design (November 2015)    PDF
  • Regulation Systems Compliance and Integrity Considerations for the AWS Cloud (November 2017)    PDF
  • U.S. Securities and Exchange Commission’s (SEC) Office of Compliance Inspections and Examinations (OCIE) Cybersecurity Initiative Audit Guide (October 2015)    PDF
  • Using AWS in the Context of Common Privacy & Data Protection Considerations (May 2018)    PDF
  • Using AWS in the Context of Australian Privacy Considerations  (May 2018)    PDF
  • Using AWS in the Context of Hong Kong Privacy Considerations (May 2018)    PDF
  • Using AWS in the Context of Malaysian Privacy Considerations  (May 2018)    PDF
  • Using AWS in the Context of Japan Privacy Considerations (May 2018)    PDF
  • Using AWS in the Context of New Zealand Privacy Considerations  (May 2018)    PDF
  • Using AWS in the Context of Singapore Privacy Considerations (May 2018)    PDF
  • Using AWS in the Context of Philippines Privacy Considerations (May 2018)    PDF

  • AWS Well-Architected Framework (November 2018)    PDF
    • Overview of the Well-Architected Framework to validate your architecture.
  • AWS Well-Architected Framework - Cost Optimization Pillar (July 2018)    PDF
    • Details for validating the cost/value aspects of your architecture.
  • AWS Well-Architected Framework - Operational Excellence Pillar (July 2018)    PDF
    • Details for validating the operational aspects of your architecture.
  • AWS Well-Architected Framework - Performance Efficiency Pillar (July 2018)    PDF
    • Details for validating the performance aspects of your architecture.
  • AWS Well-Architected Framework - Security Pillar (July 2018)    PDF
    • Details for validating the security aspects of your architecture.
  • AWS Well-Architected Framework - Reliability Pillar (September 2018)    PDF
    • Details for validating the reliability aspects of your architecture.
  • AWS Well-Architected Framework - HPC Lens (November 2018)    PDF
    • Details for ensuring your HPC workloads are architected according to best practices.
  • AWS Well-Architected Framework - Serverless Applications Lens (November 2018)    PDF
    • Details for ensuring your serverless applications are architected according to best practices.
  • AWS Well-Architected Framework - IoT Lens (November 2018)    PDF
    • Details for ensuring your IoT applications are architected according to best practices.
  • An Overview of the AWS Cloud Adoption Framework (February 2017)    PDF
    • Framework to help customers be successful adopting AWS.
  • AWS Cloud Adoption Framework: Security Perspective (June 2016)    PDF
    • Preparing your security team for AWS cloud adoption.
  • Running Containerized Microservices on AWS (November 2017)    PDF
    • Guidance for application lifecycle management, security, and architectural software design patterns for container-based applications on AWS.
  • Microservices on AWS (September 2017)  HTML | PDF
    • Using AWS to empower your organization to run microservices at high scale.
  • Infrastructure as Code (July 2017)    PDF
    • Leverage the capabilities of AWS using Infrastructure as Code to support DevOps initiatives.
  • Practicing Continuous Integration and Continuous Delivery on AWS (June 2017)    PDF
    • Learn about the features and benefits of using continuous integration/continuous delivery (CI/CD) and AWS tooling in your software development environment.
  • Jenkins on AWS (May 2017)    HTML | PDF
    • Two specific approaches to deploying the Jenkins open-source automation server on AWS.
  • Import Windows Server to Amazon EC2 with PowerShell (February 2017)    PDF
    • Learn how to use AWS VM Import/Export to import custom Windows Server images into Amazon EC2.
  • Blue/Green Deployments on AWS (August 2016)    PDF
    • Overview, techniques, and best practices for implementing a Blue/Green deployment strategy.
  • Introduction to DevOps on AWS (December 2014)    PDF
    • Primer for using a DevOps approach with AWS.
  • Development and Test on AWS (November 2012)    PDF
    • Software Development Life Cycle test environments using AWS services.  
  • ITIL Event Management in the Cloud: An AWS Cloud Adoption Framework Addendum (January 2017)    PDF
    • Best practices for using AWS for ITIL event management in hybrid clouds.
  • ITIL Asset and Configuration Management in the Cloud (January 2017)    PDF
    • An approach to ITIL asset and configuration management when using AWS.
  • Serverless Architectures with AWS Lambda (November 2017)    PDF
    • Recommendations and best practices for building your serverless applications on AWS.
  • Optimizing Enterprise Economics with Serverless Architectures (October 2017)    PDF
    • Using serverless architectures to architect reactive, event-based systems and quickly deliver cloud-native microservices at a fraction of conventional costs.
  • AWS Serverless Multi-Tier Architectures: Using Amazon API Gateway and AWS Lambda (November 2015)    PDF
    • Design patterns for serverless solutions.
  • Security Overview of AWS Lambda (March 2019)    PDF
    • Take a deep dive into the AWS Lambda service through a security lens to get a well-rounded picture of the service, as well as deepening your understanding of AWS Lambda.
  • Serverless Streaming Architectures and Best Practices (June 2018)    PDF
    • Explore three stream processing patterns using a serverless approach.
  • Backup and Recovery Approaches Using AWS (June 2016)    PDF
    • Guidance for creating a backup and recovery solution that meets your RTO and RPO requirements.
  • Building Fault-Tolerant Applications on AWS (October 2011)    PDF
    • Using AWS service features to create fault-tolerant solutions.
  • Big Data Analytics Options on AWS (December 2018)    PDF
    • Overview of big data options for architects, data scientists, and developers.
  • Lambda Architecture for Batch and Stream Processing (October 2018)    PDF
    • Using AWS Spark Streaming and Spark SQL to implement a lambda design pattern.
  • Best Practices for Deploying Alteryx Server on AWS (August 2018)    PDF
    • Learn how to use Alteryx Server to provide a scalable platform that helps create analytical insights and empowers analysts and business users across your organization.
  • Streaming Data Solutions on AWS with Amazon Kinesis (July 2017)    PDF
    • Learn how to use Amazon Kinesis Streams, Amazon Kinesis Firehose, and Amazon Kinesis Analytics to implement real-time applications and about common design patterns using these services.
  • Sizing Cloud Data Warehouses (January 2019)    PDF 
    • Learn how to determine an appropriate configuration for your migration to a cloud data warehouse.
  • Use Amazon Elasticsearch Service to Log and Monitor (Almost) Everything (December 2016)    PDF
    • Learn how to implement a serverless approach to using Amazon Elasticsearch Service and Kibana.
  • Building Media & Entertainment Predictive Analytics Solutions on AWS (December 2016)    PDF
    • Describes how a predictive analytics workload fits into the overall M&E workflows in the cloud.
  • Robust Random Cut Forest Based Anomaly Detection on Streams (Proceedings of the 33rd International Conference on Machine Learning; August 2016)    PDF
    • Using the Random Cut Forest algorithm in Amazon Kinesis analytics.
  • Best Practices for Running Oracle Siebel CRM on AWS (March 2018)    PDF
    • Architectural guidance and best practices for high availability, security, scalability, performance, and disaster recovery for running Oracle Siebel CRM systems on AWS.
  • Leveraging AWS Marketplace Storage Solutions for Microsoft SharePoint (January 2018)    HTML | PDF
    • Walks through the deployment and configuration of SoftNAS Cloud NAS for Microsoft SharePoint.
  • WordPress: Best Practices on AWS (February 2018)    PDF
    • System admin guidance for running WordPress on AWS.
  • SAP HANA on AWS Operations Overview Guide (December 2017)    PDF
    • Best practices for deployment, operations, and management of SAP HANA systems on AWS.
  • Infrastructure Event Readiness (December 2018)    PDF 
    • AWS guidelines and best practices for designing and provisioning cloud-based applications to handle planned scaling events.
  • Overview of Oracle E-Business Suite on AWS (May 2017)    PDF
    • Benefits and options for running Oracle E-Business Suite on AWS.
  • SoftNAS Architecture on AWS (April 2017)    PDF 
    • Architectural considerations for deploying SoftNAS Cloud on AWS.
  • Best Practices for Deploying Amazon WorkSpaces (July 2016)    PDF
    • Best practices for deploying and managing your virtual desktop infrastructure.
  • SaaS Storage Strategies: Building a Multitenant Storage Model on AWS (November 2016)    PDF
    • Strategies for partitioning multitenant environments.
  • Running Adobe Experience Manager on AWS (July 2016)    PDF
    • Benefits and best practices for technical leaders running Adobe Experience Manager on AWS.
  • Estimating AWS Deployment Costs for Microsoft SharePoint Server (March 2016)    PDF
    • Using the AWS Simple Monthly Calculator to estimate the cost of a Microsoft SharePoint Server solution.
  • Modernize Your Microsoft Applications on AWS (March 2016)    PDF
    • Describes the benefits of operating your Microsoft applications on AWS.
  • SaaS Solutions on AWS: Tenant Isolation Architectures (January 2016)    PDF
    • SaaS deployment models using AWS and AWS Partner Network solutions.
  • Docker on AWS: Running Containers in the Cloud (April 2015)    PDF
    • Deploying and managing Docker containers at scale on AWS.
  • Optimizing ASP.NET with C++ AMP on the GPU (April 2015)    PDF | Sample Code
    • Running MVC web apps on GPUs for matrixed multiplication.
  • Choosing the Operating System for Oracle Workloads on Amazon EC2 (December 2014)    PDF
    • Operating selection for Oracle solutions on AWS.
  • Best Practices for Deploying Microsoft SQL Server on AWS  (March 2019)    PDF
    • Guidance and best practices for deploying Microsoft SQL Server on AWS.
  • Comparing the Use of Amazon DynamoDB and Apache HBase for NoSQL (November 2018)  PDF
    •  Matching your data use case to available options.
  • Strategies for Migrating Oracle Databases to AWS (August 2018)    PDF
    • Guidance on preferred methods for migrating Oracle databases to AWS.
  • Provisioning Oracle Wallets and Accessing SSL/TLS-Based Endpoints on Amazon RDS for Oracle (February 2018)    PDF
    • How to extend outbound network access on your Amazon RDS for Oracle database instances to connect securely to remote, SSL/TLS-based endpoints.
  • Best Practices for Running Oracle Database on AWS (January 2018)   HTML | PDF
    • Guidance and best practices for running Oracle databases on AWS.
  • Optimizing MySQL Running on Amazon EC2 Using Amazon EBS (September 2017)    PDF
    • A description of the features of EBS volumes as well as deployment options and configurations for MySQL on Amazon EC2.
  • Database Caching Strategies Using Redis (May 2017)    PDF
    • An overview of database caching strategies and implementation approaches that address the limitations and challenges associated with disk-based databases.
  • Running Neo4j Graph Databases on AWS (May 2017)    PDF
    • An overview of the Neo4j NoSQL graph database and best practices for its implementation on the AWS Cloud.
  • Installing JD Edwards EnterpriseOne on Amazon RDS for Oracle (December 2016)    PDF
    • A step-by-step guide for deploying JD Edwards EnterpriseOne using Amazon RDS for Oracle.
  • Deploying Microsoft SQL Server on AWS (July 2016)    PDF
    • Guidance for running SQL Server databases on Amazon RDS or Amazon EC2.
  • Determining the IOPS Needs for Oracle Database on AWS (December 2018)    PDF
    • Guidance for sizing your Oracle Database workloads on AWS.
  • Data Warehousing on AWS (March 2016)    PDF
    • AWS services and design patterns for modern data warehousing and analytic solutions.
  • Best Practices for Migrating from RDBMS to Amazon DynamoDB (March 2015)    PDF
    • Identifying and migrating Relational Database Management System (RDBMS) databases to DynamoDB.
  • Configuring Amazon RDS as an Oracle PeopleSoft Database (April 2017)    PDF
    • Best practices for configuring Amazon RDS for Oracle Database as a backend database for Oracle PeopleSoft Enterprise.
  • The Total Cost of (Non) Ownership of a NoSQL Database Cloud Service (March 2012)    PDF
    • Calculating cost and value of a NoSQL database environment.
  • Microservices on AWS (September 2017)  HTML | PDF
    • Using AWS to empower your organization to run microservices at high scale.
  • Infrastructure as Code (July 2017)    PDF
    • Leverage the capabilities of AWS using Infrastructure as Code to support DevOps initiatives.
  • Practicing Continuous Integration and Continuous Delivery on AWS (June 2017)    PDF
    • Learn about the features and benefits of using continuous integration/continuous delivery (CI/CD) and AWS tooling in your software development environment.
  • Jenkins on AWS (May 2017)    HTML | PDF
    • Two specific approaches to deploying the Jenkins open-source automation server on AWS.
  • Import Windows Server to Amazon EC2 with PowerShell (February 2017)    PDF
    • Learn how to use AWS VM Import/Export to import custom Windows Server images into Amazon EC2.
  • Introduction to DevOps on AWS (December 2014)    PDF
    • Primer for using a DevOps aproach with AWS.  
  • Establishing Enterprise Architecture on AWS (March 2018)    HTML | PDF
    • AWS best practices and services that support enterprise architecture activities.
  • Active Directory Domain Services on AWS (December 2018)    PDF
    • Best practices for designing Active Directory Domain Services (AD DS) architecture in Amazon Web Services (AWS), including AWS Managed Microsoft AD, Active Directory on Amazon Elastic Compute Cloud (Amazon EC2) instances, and hybrid scenarios.
  • An Introduction to High Performance Computing on AWS (August 2015)    PDF
    • Overview and best practices for running HPC applications on AWS.
  • Designing MQTT Topics for AWS IoT Core (October 2018)    PDF
    • Best practices for designing MQTT topics in AWS IoT Core and leveraging AWS IoT Core features with MQTT, including AWS IoT Shadow, AWS IoT Rules Engine, and AWS IoT Device Jobs.  
  • Core Tenets of IoT (July 2017)    PDF
    • Guidance for using AWS services as part of an IoT strategy.  
  • Machine Learning Foundations: Evolution of Machine Learning and Artificial Intelligence (February 2019)    PDF
    • History of machine learning and artificial intelligence; overview of Amazon machine learning services.
  • Managing Machine Learning Projects (February 2019)    PDF
    • Best practices for balancing machine learning project potential with the need for guardrails.
  • Tagging Best Practices: Implement an Effective AWS Resource Tagging Strategy (December 2018)    PDF
    • Develop a tagging strategy that enables you to manage your AWS resources more effectively.
  • Managing User Logins for Amazon EC2 Linux Instances (September 2018)    PDF
    • Automate the process to grant and revoke login access to users across multiple Amazon EC2 Linux instances.
  • Building a Secure, Approved AMI Factory Process Using Amazon EC2 Systems Manager (SSM), AWS Marketplace, and AWS Service Catalog (November 2017)    PDF
    • Outlines a process using the best practices for building and maintaining Approved AMIs through Amazon EC2 Systems Manager and delivering them to your teams using AWS Service Catalog.
  • Strategies for Managing Access to AWS Resources in AWS Marketplace (July 2016)    PDF
    • Describes how AWS Marketplace applications can use AWS Identity and Access Management (IAM) for authentication.
  • Use AWS Config to Monitor License Compliance on Amazon EC2 Dedicated Hosts (April 2016)    PDF
    • Configuring AWS Config and AWS Config Rules to monitor license compliance.
  • Migrating to Apache HBase on Amazon S3 on Amazon EMR (October 2018)    PDF
    • Overview and guidance in the migration of an on-premises or HDFS backed Apache HBase cluster to Apache HBase on Amazon S3.  
  • Migrating Oracle Database Workloads to Oracle Linux on AWS (March 2018)    PDF
    • Overview of migration paths and methods available between different operating systems to Oracle Linux on AWS.
  • AWS Best Practices for Oracle PeopleSoft (December 2017)    PDF
    • Learn best practices for moving Oracle PeopleSoft applications to AWS and understand how to leverage AWS for all PeopleSoft applications.
  • AWS Migration Whitepaper (March 2018)    PDF
    • Learn methods and best practices for migrating your applications and IT assets to AWS.
  • AWS Cloud Transformation Maturity Model (September 2017)    PDF
    • Maps the maturity of an IT organization’s process, people, and technology through the four stages of an AWS cloud journey.
  • Migrating Microsoft Azure SQL Databases to Amazon Aurora (August 2017)    PDF
    • Migrating multi-tenant Microsoft Azure SQL databases to Amazon Aurora using SQL Server Integration Service and Amazon S3.
  • Move Amazon RDS MySQL Databases to Amazon VPC using Amazon EC2 ClassicLink and Read Replicas (July 2017)    PDF
    • Detailed guidance for migrating Amazon RDS MySQL databases to Amazon VPC.
  • Migrating AWS Resources to a New Region (July 2017)    PDF
    • Options and methods for migrating services to different AWS regions.
  • Amazon Aurora Migration Handbook (May 2017)    PDF
    • Best practices for planning, executing, and troubleshooting database migrations to Amazon Aurora.
  • Best Practices for Migrating MySQL Databases to Amazon Aurora (October 2016)    PDF
    • Using Amazon Relational Database Service (Amazon RDS) to migrate databases to Amazon Aurora.
  • Migrating Applications to AWS: Guide and Best Practices (December 2016)    PDF
    • A guide to using the AWS Schema Conversion Tool and AWS Database Migration Service to migrate your on-premises database to Amazon RDS.
  • AWS Database Migration Service Best Practices (August 2016)    PDF
    • Best practices for using the AWS Database Migration Service.
  • Migrating Your Databases to Amazon Aurora (June 2016)    PDF
    • Migrating your MySQL-compatible databases to Amazon Aurora through Amazon RDS.
  • An Overview of AWS Cloud Data Migration Services (May 2016)    PDF
    • Approaches, options, and tradeoffs for AWS data migration solutions.
  • A Practical Guide to Cloud Migration: Migrating Services to AWS (December 2015)    PDF
    • Tips and tricks for moving from an on-premise environment to the AWS Cloud.
  • Performance at Scale with Amazon ElastiCache (May 2015)    PDF
    • In-memory caching for better application performance and value.
  • Overview of Deployment Options on AWS (March 2015)    PDF
    • Options for provising infrastructure and deploying applications to AWS.
  • Migrating Your Existing Applications to the AWS Cloud (October 2010)    PDF
    • Phase-driven approach to cloud migration with three example scenarios.  
  • Security of AWS CloudHSM Backups (December 2017)    PDF
    • Provides an in-depth look at the security mechanisms in place around the backup and restore functionality of AWS CloudHSM.
  • Use AWS WAF to Mitigate OWASP's Top 10 Web Application Vulnerabilities (July 2017)    PDF
    • Using AWS WAF to mitigate the application vulnerabilities that are defined in the Open Web Application Security Project (OWASP) Top 10 list of most common categories of application security flaws.
  • Cross-Domain Solutions on AWS (December 2016)    PDF
    • Best practices for deploying a cross-domain solution using AWS services.
  • Single Sign-On: Integrating AWS, OpenLDAP, and Shibboleth (April 2015)    PDF
    • Integrating AWS IAM and LDAP for single sign-on solution.
  • Using Windows Active Directory Federation Services (ADFS) for Single Sign-On to EC2 (March 2010)    PDF
    • Single sign-on for hybrid environment.
  • Web Application Hosting in the AWS Cloud: Best Practices (September 2017)    PDF
    • Creating available and scalable web hosting solutions using AWS services.
  • Hosting Static Websites on AWS: Prescriptive Guidance (February 2019)    PDF
    • Architectural guidance for developing, deploying, and managing static websites on AWS.
  • The Total Cost of (Non) Ownership of Web Applications in the Cloud (August 2012)    PDF
    • Calculating total costs of using AWS services.
  • Building a Real-Time Bidding Platform on AWS (February 2016)    PDF
    • Designing guidance for real-time bidding solutions for the digital advertising industry.
  • Setting Up Multiuser Environments (for Classroom Training and Research) (October 2013)    PDF
    • Different approaches for setting up isolated environments in educational environments.
  • Optimizing Electronic Design Automation (EDA) Workflows on AWS (September 2018)    PDF
    • Overview of the EDA workflow and the specific AWS architectural components to maximize EDA workflows.
  • AWS User Guide to Financial Services Regulations and Guidelines in Hong Kong (October 2017)    PDF
    • User guide for Authorized Insurers (AIs) licensed by the Hong Kong Insurance Authority (IA) as they accelerate their use of AWS Cloud services.
  • Financial Services Grid Computing on AWS (January 2016)   PDF
    • Best practices for using AWS for grid computing in the financial industry.
  • Introduction to Scalable Gaming Patterns on AWS (September 2017)  PDF
    • Overview of AWS services for building and delivering scalable, reliable, and cost effective cloud-enabled solutions for common gaming workloads.
  • Optimizing Multiplayer Game Server Performance on AWS (April 2017)   PDF
    • Learn how to optimize your Amazon EC2 Linux multiplayer game server to achieve the best performance.
  • 5 Ways the Cloud Can Drive Economic Development (August 2018)  PDF
    • Overview of the enterprise-level benefits of the cloud, as well as the residual impact on economic development.
  • Digital Transformation Checklist: Using Technology to Break Down Innovation Barriers in Government (December 2017)    PDF
    • Provides guidelines that governments can use to break down innovation barriers and achieve a digital transformation that helps them engage and serve citizens.
  • How Cities Can Stop Wasting Money, Move Faster, and Innovate (January 2016)    PDF
    • Strategic guidance for local and regional governments looking to use AWS services.
  • Homelessness and Technology (March 2019)   PDF
    • Best practices for how communities can use technology to prevent and combat homelessness.
  • Building Media & Entertainment Predictive Analytics Solutions on AWS (December 2016)    PDF
    • Describes how a predictive analytics workload fits into the overall M&E workflows in the cloud.
  • Leveraging Amazon Chime Voice Connector for SIP Trunking  (March 2019)   PDF
    • Describes the features and benefits of Amazon Chime Voice Connector, a service that carries your voice traffic over the internet and elastically scales to meet your capacity needs.
  • Real-Time Communication on AWS (October 2018)    PDF
    • Best practices for designing highly available and scalable real-time communication (RTC) workloads on AWS. 
  • A Platform for Computing at the Mobile Edge: Joint Solution with HPE, Saguna, and AWS (February 2018)    PDF
    • Learn the value of a standards-based computing platform at the mobile network edge, with use cases and a reference architecture.
  • WeDo Telecom RAID Risk Management Solution in the AWS Cloud (July 2018)    PDF
    • Use cases, reference Architecture and benefits of Telecom revenue assurance and fraud management solutions on AWS Cloud. 
  • Amdocs Optima Digital Customer Management and Commerce Platform in the AWS Cloud (February 2018)    PDF
    • Reference Architecture and benefits of the Amdocs Optima Platform on the AWS Cloud.
  • Overview of the Samsung Push to Talk (PTT) Solution on AWS (October 2017)    PDF
    • Provides an architectural overview for running the Samsung Push to Talk (PTT) solution suite on AWS.  
  • Understanding T2 Standard Instance CPU Credits  (March 2019)   PDF
    • Describes how a T2 Standard instance earns CPU credits, how launch credits are granted, and how those launch and earned CPU credits are spent.
  • Oracle WebLogic Server 12c on AWS  (December 2018)   PDF
    • Guidance on how to deploy Oracle WebLogic Server 12c-based applications on AWS.
  • Extend Your IT Infrastructure with Amazon Virtual Private Cloud (December 2018)    PDF
    • Secure connections to AWS services using Amazon Virtual Private Cloud.
  • Hybrid Cloud DNS Solutions for Amazon VPC (November 2018)    PDF
    • Provides solutions for organizations that need to perform DNS name resolution of both Amazon VPC and on-premises workloads.
  • Demystifying the Number of vCPUs for Optimal Workload Performance (September 2018)    PDF
    • Scientific methodology and detailed examples for benchmarking CPU performance for different CPU generations.
  • Financial Services Grid Computing on AWS (January 2016)    PDF
    • Best practices for using AWS for grid computing in the financial industry.
  • Lambda Architecture for Batch and Real-Time Processing on AWS with Spark Streaming and Spark SQL (May 2015)    PDF
    • Using AWS Spark Streaming and Spark SQL to implement a lambda design pattern.
  • Amazon Elastic File System: Choosing Between Different Throughput and Performance Mode (July 2018)    PDF 
    • best practices for running network shared file systems on the AWS cloud platform.
  • Building Big Data Storage Solutions (Data Lakes) for Maximum Flexibility (July 2017)    HTML | PDF
    • Options and best practices for building your Amazon S3-based data lake.
  • File Gateway for Hybrid Cloud Storage Architectures (March 2019)    PDF
    • Overview and best practices for building hybrid environments using AWS Storage Gateway in a file gateway configuration.
  • Backup and Recovery Approaches Using AWS (June 2016)    PDF
    • Guidance for creating a backup and recovery solution that meets your RTO and RPO requirements.
  • AWS Storage Services Overview (December 2016)    PDF
    • Overview of storage solutions available from AWS.
  • Using AWS for Disaster Recovery (October 2014)    PDF 
    • Providing business continuity with AWS services.
  • Amazon Aurora MySQL Database Administrator's Handbook: Connection Management (March 2019)    PDF
    • Best practices for managing database connections, setting server connection parameters, and configuring client programs, drivers, and connectors.
  • Migrating Microsoft Azure SQL Databases to Amazon Aurora (August 2017)    PDF
    • Migrating multi-tenant Microsoft Azure SQL databases to Amazon Aurora using SQL Server Integration Service and Amazon S3.
  • Migrating Applications to AWS: Guide and Best Practices (December 2016)    PDF
    • A guide to using the AWS Schema Conversion Tool and AWS Database Migration Service to migrate your on-premises database to Amazon RDS.
  • Best Practices for Migrating MySQL Databases to Amazon Aurora (October 2016)    PDF
    • Using Amazon Relational Database Service (Amazon RDS) to migrate databases to Amazon Aurora.
  • AWS Database Migration Service Best Practices (August 2016)    PDF
    • Best practices for using the AWS Database Migration Service.
  • Strategies for Migrating Oracle Databases to AWS (August 2018)    PDF
    • Guidance on preferred methods for migrating Oracle databases to AWS.
  • Data Warehousing on AWS (March 2016)    PDF
    • AWS services and design patterns for modern data warehousing and analytic solutions.
  • Performance at Scale with Amazon ElastiCache (May 2015)    PDF
    • In-memory caching for better application performance and value.
  • Best Practices for Migrating from RDBMS to Amazon DynamoDB (March 2015)    PDF
    • Identifying and migrating Relational Database Management System (RDBMS) databases to DynamoDB.
  • Comparing the Use of Amazon DynamoDB and Apache HBase for NoSQL (November 2018)    PDF
    • Matching your data use case to available options.  
  • Migrating Your Databases to Amazon Aurora (June 2016)    PDF
    • Migrating your MySQL-compatible databases to Amazon Aurora through Amazon RDS.
  • Securely Access Services Over AWS PrivateLink (January 2019)    PDF
    • Learn how AWS PrivateLink keeps network traffic private and allows connectivity from Amazon VPCs to services and data hosted on AWS in a secure and scalable manner.
  • Integrating AWS with Multiprotocol Label Switching (December 2016)    PDF
    • Options for integrating AWS into your current MPLS/WAN architecture.
  • Amazon Virtual Private Cloud Network Connectivity Options (January 2018)    HTML | PDF
    • Connecting VPCs to each other and to other remote networks.
  • Migrating AWS Resources to a New Region (July 2017)    PDF
    • Options and methods for migrating services to different AWS regions.
  • An Overview of AWS Cloud Data Migration Services (May 2016)    PDF
    • Approaches, options, and tradeoffs for AWS data migration solutions.
  • Use AWS Config to Monitor License Compliance on Amazon EC2 Dedicated Hosts (April 2016)    PDF
    • Configuring AWS Config and AWS Config Rules to monitor license compliance.
  • Overview of Deployment Options on AWS (March 2015)    PDF
    • Options for provising infrastructure and deploying applications to AWS.
  • Managing Your AWS Infrastructure at Scale (February 2015)    PDF
    • Tools and techniques for managing your AWS environment at any scale.
  • Big Data Analytics Options on AWS (December 2018)    PDF
    • Overview of big data options for architects, data scientists, and developers.
  • Streaming Data Solutions on AWS with Amazon Kinesis (July 2017)    PDF
    • Learn how to use Amazon Kinesis Streams, Amazon Kinesis Firehose, and Amazon Kinesis Analytics to implement real-time applications and about common design patterns using these services.
  • Use Amazon Elasticsearch Service to Log and Monitor (Almost) Everything (December 2016)    PDF
    • Learn how to implement a serverless approach to using Amazon Elasticsearch Service and Kibana.
  • Sizing Cloud Data Warehouses (January 2019)    PDF 
    • Learn how to determine an appropriate configuration for your migration to a cloud data warehouse.
  • Robust Random Cut Forest Based Anomaly Detection on Streams (Proceedings of the 33rd International Conference on Machine Learning; August 2016)    PDF
    • Using the Random Cut Forest algorithm in Amazon Kinesis analytics.
  • A Practical Guide to Cloud Migration: Migrating Services to AWS (December 2015)    PDF
    • Tips and tricks for moving from an on-premise environment to the AWS Cloud.
  • Migrating Your Existing Applications to the AWS Cloud (October 2010)    PDF
    • Phase-driven approach to cloud migration with three example scenarios.  
  • Best Practices for Deploying Amazon WorkSpaces (July 2016)    PDF
    • Best practices for deploying and managing your virtual desktop infrastructure.
  • AWS Key Management Service Cryptographic Details (August 2018)    PDF
    • Detailed description of cryptographic operations when using AWS Key Management Service.
  • Encrypting File Data with Amazon Elastic File System (April 2018)   HTML | PDF
    • Best practices for encrypting shared file systems on AWS using Amazon Elastic File System (Amazon EFS).
  • Use AWS WAF to Mitigate OWASP's Top 10 Web Application Vulnerabilities (July 2017)    PDF
    • Using AWS WAF to mitigate the application vulnerabilities that are defined in the Open Web Application Security Project (OWASP) Top 10 list of most common categories of application security flaws.
  • AWS Key Management Service Best Practices (April 2017)    PDF
    • Best practices for implementing AWS KMS in your organization.
#####EOF##### Amazon.com: Black Box Thinking: Why Most People Never Learn from Their Mistakes--But Some Do eBook: Matthew Syed: Kindle Store

Buying Options

Kindle Price: $17.99

Save $9.96 (36%)

These promotions will be applied to this item:

Some promotions may be combined; others are not eligible to be combined with other offers. For details, please see the Terms & Conditions associated with these promotions.

Deliver to your Kindle or other device

Buy for others

Give as a gift or purchase for a team or group. Learn more

Buying and sending eBooks to others


Select quantity
Buy and send eBooks
Recipients can read on any device

Additional gift options are available when buying one eBook at a time. Learn more


These ebooks can only be redeemed by recipients in the US. Redemption links and eBooks cannot be resold.

Quantity:
This item has a maximum order quantity limit.

Deliver to your Kindle or other device

<Embed>
Kindle App Ad
Black Box Thinking: Why Most People Never Learn from Their Mistakes--But Some Do by [Syed, Matthew]
Audible Sample
Playing...
Loading...
Paused

Follow the Author

Something went wrong. Please try your request again later.


Black Box Thinking: Why Most People Never Learn from Their Mistakes--But Some Do Kindle Edition

4.6 out of 5 stars 110 customer reviews

See all 15 formats and editions Hide other formats and editions
Price
New from Used from
Kindle
$17.99

Length: 325 pages Word Wise: Enabled Enhanced Typesetting: Enabled
Page Flip: Enabled Audible book:
Audible book
Switch back and forth between reading the Kindle book and listening to the Audible book with Whispersync for Voice. Add the Audible book for a reduced price of $10.49 when you buy the Kindle book.
Available

An Amazon Book with Buzz: "Maybe You Should Talk to Someone"
"This is a daring, delightful, and transformative book." ―Arianna Huffington, Founder, Huffington Post Learn more
click to open popover

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Editorial Reviews

Review

Praise for Black Box Thinking

"Mathew Syed has issued a stirring call to redefine failure. Failure shouldn’t be shameful and stigmatizing, he explains. Instead, he shows that failure can be exciting and enlightening — an essential ingredient in any recipe for success. Full of well-crafted stories and keenly deployed scientific insights, Black Box Thinking will forever change the way you think about screwing up."
DANIEL PINK, author of Drive and To Sell Is Human

Praise for Bounce

"Insightful and entertaining"
DAN ARIELY, author of Predictably Irrational

"The most important book I’ve read over the past six months."
PETER ORSZAG, economist, in The New York Times

"A fascinating subject and Syed is a dazzling writer."
OWEN SLOT, The Times London

"Everything Mathew Syed Writes is worth reading."
LYNN TRUSS, bestselling author of Eat, Shoots & Leaves

About the Author

Matthew Syed is a leading columnist and feature writer forThe Times. He makes authored features for the BBC current affairs programmeNewsnightand regularly appears on CNN International and World Service TV. He also gives business talks to major international corporate clients including Goldman Sachs, BP, Rolls-Royce, McKinsey, Manchester United, Oxford University and Vodafone. Before becoming a writer Matthew was the England table tennis number one for almost a decade, three times Commonwealth Champion, and he twice represented Great Britain in the Olympic Games.

Matthew Syed's first book,Bounce: The Myth of Talent and the Power of Practice, was shortlisted for the William Hill Sports Book of the Year and became a UK best-seller.

Product details

  • File Size: 2446 KB
  • Print Length: 325 pages
  • Publisher: Portfolio; 1 edition (November 3, 2015)
  • Publication Date: November 3, 2015
  • Sold by: Penguin Group (USA) LLC
  • Language: English
  • ASIN: B00SI0B8XC
  • Text-to-Speech: Enabled
  • X-Ray:
  • Word Wise: Enabled
  • Lending: Not Enabled
  • Enhanced Typesetting: Enabled
  • Amazon Best Sellers Rank: #81,544 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  • Would you like to tell us about a lower price?


110 customer reviews

4.6 out of 5 stars

By customer groups & interests
Health & Wellness
4.3
Book Series
4.3
Novels
4.5

Review this product

Share your thoughts with other customers

Read reviews that mention

November 24, 2015
Format: Kindle EditionVerified Purchase
43 people found this helpful
Comment Report abuse
February 28, 2018
Format: Audible AudiobookVerified Purchase
4 people found this helpful
Comment Report abuse
March 16, 2016
Format: HardcoverVerified Purchase
5 people found this helpful
Comment Report abuse
January 31, 2016
Format: Kindle EditionVerified Purchase
7 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

Black Box Thinking: Why Most People Never Learn from Their Mistakes--But Some Do
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Black Box Thinking: Why Most People Never Learn from Their Mistakes--But Some Do


#####EOF##### Things Go Better With Step Functions | AWS News Blog
#####EOF##### About AmazonSmile: Program details and FAQ
Welcome to AmazonSmile!

About AmazonSmile

What is AmazonSmile?
AmazonSmile is a simple and automatic way for you to support your favorite charitable organization every time you shop, at no cost to you. When you shop at smile.amazon.com, you’ll find the exact same low prices, vast selection and convenient shopping experience as Amazon.com, with the added bonus that Amazon will donate a portion of the purchase price to your favorite charitable organization. You can choose from over one million organizations to support.
How do I shop at AmazonSmile?
To shop at AmazonSmile simply go to smile.amazon.com from the web browser on your computer or mobile device. You may also want to add a bookmark to smile.amazon.com to make it even easier to return and start your shopping at AmazonSmile.
Which products on AmazonSmile are eligible for charitable donations?
Tens of millions of products on AmazonSmile are eligible for donations. You will see eligible products marked “Eligible for AmazonSmile donation” on their product detail pages. Recurring Subscribe-and-Save purchases and subscription renewals are not currently eligible.
Can I use my existing Amazon.com account on AmazonSmile?
Yes, you use the same account on Amazon.com and AmazonSmile. Your shopping cart, Wish List, wedding or baby registry, and other account settings are also the same.
How do I select a charitable organization to support when shopping on AmazonSmile?
On your first visit to AmazonSmile smile.amazon.com, you need to select a charitable organization to receive donations from eligible purchases before you begin shopping. We will remember your selection, and then every eligible purchase you make at smile.amazon.com will result in a donation.
Can I change my charity?
Yes, you can change your charity any time. Your AmazonSmile purchases after the change count towards your newly selected charity. To change your charity, sign in to smile.amazon.com on your desktop or mobile phone browser and simply select “Change your Charity” in “Your Account.”
What charities can I choose from?
You can choose from over one million eligible 501(c)(3) public charitable organizations.
What if my selected charity does not register to participate in the AmazonSmile program or becomes ineligible?
If your selected charity does not register to participate, becomes ineligible, or requests to be removed from the program, you will have a chance to select a different charity to receive the accrued donations that have not yet been disbursed to your charity. If you do not select a different charity, the accrued donations will be distributed to other organizations receiving donations.
If I represent a charitable organization, how can I learn more about registering my organization for AmazonSmile?
Go to org.amazon.com to learn how to register your organization to receive donations.
How much of my purchase does Amazon donate?
The AmazonSmile Foundation will donate 0.5% of the purchase price from your eligible AmazonSmile purchases. The purchase price is the amount paid for the item minus any rebates and excluding shipping & handling, gift-wrapping fees, taxes, or service charges. From time to time, we may offer special, limited time promotions that increase the donation amount on one or more products or services or provide for additional donations to charitable organizations. Special terms and restrictions may apply. Please see the relevant promotion for complete details.
Can I receive a tax deduction for amounts donated from my purchases on AmazonSmile?
Donations are made by the AmazonSmile Foundation and are not tax deductible by you.
How can I learn more about AmazonSmile?
Please see complete AmazonSmile program details.
Represent a charitable organization? Visit org.amazon.com

Share AmazonSmile:
© 1996-2019, Amazon.com, Inc. or its affiliates Conditions of Use | Privacy Notice
#####EOF##### What is DevOps? - Amazon Web Services (AWS)
AWS Cloud
AWS Cloud
Get Started with AWS

DevOps is the combination of cultural philosophies, practices, and tools that increases an organization’s ability to deliver applications and services at high velocity: evolving and improving products at a faster pace than organizations using traditional software development and infrastructure management processes. This speed enables organizations to better serve their customers and compete more effectively in the market.

What is DevOps?

Under a DevOps model, development and operations teams are no longer “siloed.” Sometimes, these two teams are merged into a single team where the engineers work across the entire application lifecycle, from development and test to deployment to operations, and develop a range of skills not limited to a single function.

In some DevOps models, quality assurance and security teams may also become more tightly integrated with development and operations and throughout the application lifecycle. When security is the focus of everyone on a DevOps team, this is sometimes referred to as DevSecOps.

These teams use practices to automate processes that historically have been manual and slow. They use a technology stack and tooling which help them operate and evolve applications quickly and reliably. These tools also help engineers independently accomplish tasks (for example, deploying code or provisioning infrastructure) that normally would have required help from other teams, and this further increases a team’s velocity.

DevOps-What-is_scale

Move at high velocity so you can innovate for customers faster, adapt to changing markets better, and grow more efficient at driving business results. The DevOps model enables your developers and operations teams to achieve these results. For example, microservices and continuous delivery let teams take ownership of services and then release updates to them quicker.

DevOps-What-is_delivery

Increase the frequency and pace of releases so you can innovate and improve your product faster. The quicker you can release new features and fix bugs, the faster you can respond to your customers’ needs and build competitive advantage. Continuous integration and continuous delivery are practices that automate the software release process, from build to deploy.

DevOps-What-is_reliability

Ensure the quality of application updates and infrastructure changes so you can reliably deliver at a more rapid pace while maintaining a positive experience for end users. Use practices like continuous integration and continuous delivery to test that each change is functional and safe. Monitoring and logging practices help you stay informed of performance in real-time.

DevOps-What-is_scale

Operate and manage your infrastructure and development processes at scale. Automation and consistency help you manage complex or changing systems efficiently and with reduced risk. For example, infrastructure as code helps you manage your development, testing, and production environments in a repeatable and more efficient manner.

DevOps-What-is_collaboration

Build more effective teams under a DevOps cultural model, which emphasizes values such as ownership and accountability. Developers and operations teams collaborate closely, share many responsibilities, and combine their workflows. This reduces inefficiencies and saves time (e.g. reduced handover periods between developers and operations, writing code that takes into account the environment in which it is run).

DevOps-What-is_security

Move quickly while retaining control and preserving compliance. You can adopt a DevOps model without sacrificing security by using automated compliance policies, fine-grained controls, and configuration management techniques. For example, using infrastructure as code and policy as code, you can define and then track compliance at scale.

Software and the Internet have transformed the world and its industries, from shopping to entertainment to banking. Software no longer merely supports a business; rather it becomes an integral component of every part of a business. Companies interact with their customers through software delivered as online services or applications and on all sorts of devices. They also use software to increase operational efficiencies by transforming every part of the value chain, such as logistics, communications, and operations. In a similar way that physical goods companies transformed how they design, build, and deliver products using industrial automation throughout the 20th century, companies in today’s world must transform how they build and deliver software.

Transitioning to DevOps requires a change in culture and mindset. At its simplest, DevOps is about removing the barriers between two traditionally siloed teams, development and operations. In some organizations, there may not even be separate development and operations teams; engineers may do both. With DevOps, the two teams work together to optimize both the productivity of developers and the reliability of operations. They strive to communicate frequently, increase efficiencies, and improve the quality of services they provide to customers. They take full ownership for their services, often beyond where their stated roles or titles have traditionally been scoped by thinking about the end customer’s needs and how they can contribute to solving those needs. Quality assurance and security teams may also become tightly integrated with these teams. Organizations using a DevOps model, regardless of their organizational structure, have teams that view the entire development and infrastructure lifecycle as part of their responsibilities.

There are a few key practices that help organizations innovate faster through automating and streamlining the software development and infrastructure management processes. Most of these practices are accomplished with proper tooling.

One fundamental practice is to perform very frequent but small updates. This is how organizations innovate faster for their customers. These updates are usually more incremental in nature than the occasional updates performed under traditional release practices. Frequent but small updates make each deployment less risky. They help teams address bugs faster because teams can identify the last deployment that caused the error. Although the cadence and size of updates will vary, organizations using a DevOps model deploy updates much more often than organizations using traditional software development practices.

Organizations might also use a microservices architecture to make their applications more flexible and enable quicker innovation. The microservices architecture decouples large, complex systems into simple, independent projects. Applications are broken into many individual components (services) with each service scoped to a single purpose or function and operated independently of its peer services and the application as a whole. This architecture reduces the coordination overhead of updating applications, and when each service is paired with small, agile teams who take ownership of each service, organizations can move more quickly.

However, the combination of microservices and increased release frequency leads to significantly more deployments which can present operational challenges. Thus, DevOps practices like continuous integration and continuous delivery solve these issues and let organizations deliver rapidly in a safe and reliable manner. Infrastructure automation practices, like infrastructure as code and configuration management, help to keep computing resources elastic and responsive to frequent changes. In addition, the use of monitoring and logging helps engineers track the performance of applications and infrastructure so they can react quickly to problems.

Together, these practices help organizations deliver faster, more reliable updates to their customers. Here is an overview of important DevOps practices.


The following are DevOps best practices: 

Below you can learn more about each particular practice.
Continuous Integration

Continuous integration is a software development practice where developers regularly merge their code changes into a central repository, after which automated builds and tests are run. The key goals of continuous integration are to find and address bugs quicker, improve software quality, and reduce the time it takes to validate and release new software updates.

Learn more about continuous integration »


Continuous Delivery

Continuous delivery is a software development practice where code changes are automatically built, tested, and prepared for a release to production. It expands upon continuous integration by deploying all code changes to a testing environment and/or a production environment after the build stage. When continuous delivery is implemented properly, developers will always have a deployment-ready build artifact that has passed through a standardized test process.

Learn more about continuous delivery and AWS CodePipeline »


Microservices

The microservices architecture is a design approach to build a single application as a set of small services. Each service runs in its own process and communicates with other services through a well-defined interface using a lightweight mechanism, typically an HTTP-based application programming interface (API). Microservices are built around business capabilities; each service is scoped to a single purpose. You can use different frameworks or programming languages to write microservices and deploy them independently, as a single service, or as a group of services.

Learn more about Amazon Container Service (Amazon ECS) »

Learn more about AWS Lambda »


Infrastructure as Code

Infrastructure as code is a practice in which infrastructure is provisioned and managed using code and software development techniques, such as version control and continuous integration. The cloud’s API-driven model enables developers and system administrators to interact with infrastructure programmatically, and at scale, instead of needing to manually set up and configure resources. Thus, engineers can interface with infrastructure using code-based tools and treat infrastructure in a manner similar to how they treat application code. Because they are defined by code, infrastructure and servers can quickly be deployed using standardized patterns, updated with the latest patches and versions, or duplicated in repeatable ways.

Learn to manage your infrastructure as code with AWS CloudFormation »

Developers and system administrators use code to automate operating system and host configuration, operational tasks, and more. The use of code makes configuration changes repeatable and standardized. It frees developers and systems administrators from manually configuring operating systems, system applications, or server software.

Learn how you can configure and manage Amazon EC2 and on-premises systems with Amazon EC2 Systems Manager »

Learn to use configuration management with AWS OpsWorks »

With infrastructure and its configuration codified with the cloud, organizations can monitor and enforce compliance dynamically and at scale. Infrastructure that is described by code can thus be tracked, validated, and reconfigured in an automated way. This makes it easier for organizations to govern changes over resources and ensure that security measures are properly enforced in a distributed manner (e.g. information security or compliance with PCI-DSS or HIPAA). This allows teams within an organization to move at higher velocity since non-compliant resources can be automatically flagged for further investigation or even automatically brought back into compliance.

Learn how you can use AWS Config and Config Rules to monitor and enforce compliance for your infrastructure » 


Monitoring and Logging

Organizations monitor metrics and logs to see how application and infrastructure performance impacts the experience of their product’s end user. By capturing, categorizing, and then analyzing data and logs generated by applications and infrastructure, organizations understand how changes or updates impact users, shedding insights into the root causes of problems or unexpected changes. Active monitoring becomes increasingly important as services must be available 24/7 and as application and infrastructure update frequency increases. Creating alerts or performing real-time analysis of this data also helps organizations more proactively monitor their services.

Learn how you can use Amazon CloudWatch to monitor your infrastructure metrics and logs »

Learn how you can use AWS CloudTrail to record and log AWS API calls »


Communication and Collaboration

Increased communication and collaboration in an organization is one of the key cultural aspects of DevOps. The use of DevOps tooling and automation of the software delivery process establishes collaboration by physically bringing together the workflows and responsibilities of development and operations. Building on top of that, these teams set strong cultural norms around information sharing and facilitating communication through the use of chat applications, issue or project tracking systems, and wikis. This helps speed up communication across developers, operations, and even other teams like marketing or sales, allowing all parts of the organization to align more closely on goals and projects.

The DevOps model relies on effective tooling to help teams rapidly and reliably deploy and innovate for their customers. These tools automate manual tasks, help teams manage complex environments at scale, and keep engineers in control of the high velocity that is enabled by DevOps. AWS provides services that are designed for DevOps and that are built first for use with the AWS cloud. These services help you use the DevOps practices described above.

Learn about AWS DevOps services »

Learn about AWS partner solutions »

#####EOF##### DevOps - Amazon Web Services (AWS)
DevOps
AWS Cloud
Get Started with AWS

AWS provides a set of flexible services designed to enable companies to more rapidly and reliably build and deliver products using AWS and DevOps practices. These services simplify provisioning and managing infrastructure, deploying application code, automating software release processes, and monitoring your application and infrastructure performance.

DevOps is the combination of cultural philosophies, practices, and tools that increases an organization’s ability to deliver applications and services at high velocity: evolving and improving products at a faster pace than organizations using traditional software development and infrastructure management processes. This speed enables organizations to better serve their customers and compete more effectively in the market.
Learn more about DevOps »

15
Get Started Fast

Each AWS service is ready to use if you have an AWS account. There is no setup required or software to install.

Fully Managed Services

These services can help you take advantage of AWS resources quicker. You can worry less about setting up, installing, and operating infrastructure on your own. This lets you focus on your core product.  

Buit for Scale

You can manage a single instance or scale to thousands using AWS services. These services help you make the most of flexible compute resources by simplifying provisioning, configuration, and scaling.

Programmable

You have the option to use each service via the AWS Command Line Interface or through APIs and SDKs. You can also model and provision AWS resources and your entire AWS infrastructure using declarative AWS CloudFormation templates.

Automation

AWS helps you use automation so you can build faster and more efficiently. Using AWS services, you can automate manual tasks or processes such as deployments, development & test workflows, container management, and configuration management.

Secure

Use AWS Identity and Access Management (IAM) to set user permissions and policies. This gives you granular control over who can access your resources and how they access those resources.

Large Partner Ecosystem

AWS supports a large ecosystem of partners which integrate with and extend AWS services. Use your preferred third-party and open source tools with AWS to build an end-to-end solution. Visit here to learn more about our DevOps Partner Solutions.

Pay-as-you-go

With AWS purchase services as you need them and only for the period when you plan to use them. AWS pricing has no upfront fees, termination penalties, or long term contracts. The AWS Free Tier helps you get started with AWS. Visit the pricing pages of each service to learn more.

AWS provides services that help you practice DevOps at your company and that are built first for use with AWS. These tools automate manual tasks, help teams manage complex environments at scale, and keep engineers in control of the high velocity that is enabled by DevOps.  

Explore our solutions and tooling for DevOps.

The AWS Developer Tools help you securely store and version your application's source code and automatically build, test, and deploy your application to AWS or your on-premises environment.

Start with AWS CodePipeline to build a continuous integration or continuous delivery workflow that uses AWS CodeBuild, AWS CodeDeploy, and other tools, or use each service separately.

AWS CodePipeline

AWS CodePipeline

AWS CodePipeline is a continuous integration and continuous delivery service for fast and reliable application and infrastructure updates. CodePipeline builds, tests, and deploys your code every time there is a code change, based on the release process models you define. This enables you to rapidly and reliably deliver features and updates.
Learn more »

AWS CodeBuild

AWS CodeBuild

AWS CodeBuild is a fully managed build service that compiles source code, runs tests, and produces software packages that are ready to deploy. With CodeBuild, you don’t need to provision, manage, and scale your own build servers. CodeBuild scales continuously and processes multiple builds concurrently, so your builds are not left waiting in a queue.
Learn more »

 

AWS CodeDeploy

AWS CodeDeploy

AWS CodeDeploy automates code deployments to any instance, including Amazon EC2 instances and on-premises servers. AWS CodeDeploy makes it easier for you to rapidly release new features, helps you avoid downtime during application deployment, and handles the complexity of updating your applications.  
Learn more »

 

AWS CodeStar

AWS CodeStar

AWS CodeStar enables you to quickly develop, build, and deploy applications on AWS. AWS CodeStar provides a unified user interface, enabling you to easily manage your software development activities in one place. With AWS CodeStar, you can set up your entire continuous delivery toolchain in minutes, allowing you to start releasing code faster.
Learn more »

 

DevOps-Solution_logobreak_instacart

Instacart uses AWS CodeDeploy to automate deployments for all of its front-end and back-end services. Using AWS CodeDeploy has enabled Instacart’s developers to focus on their product and worry less about deployment operations.
Read the case study »

DevOps-Solution_logobreak_lululemon

lululemon athletica uses a variety of AWS services to engineer a fully automated, continuous integration and delivery system. lululemon deploys artifacts distributed via Amazon S3 using AWS CodePipeline. From this stage, the artifacts are deployed to AWS Elastic Beanstalk.
Read the case study »


Build and deploy a microservices architecture using containers or serverless computing.

Amazon EC2 Container Service

Amazon Elastic Container Service

Amazon Elastic Container Service (ECS) is a highly scalable, high performance container management service that supports Docker containers and allows you to easily run applications on a managed cluster of Amazon EC2 instances.
Learn more »

 

AWS Lambda

AWS Lambda

AWS Lambda lets you run code without provisioning or managing servers. With Lambda, you can run code for virtually any type of application or backend service - all with zero administration. Just upload your code and Lambda takes care of everything required to run and scale your code with high availability.
Learn more »

 

DevOps-Solution_logobreak_coursera

Coursera uses Amazon Elastic Container Service to manage a microservices -based architecture for its applications. Coursera can now deploy software changes in minutes instead of hours in a resource-isolated environment.
Read the case study »

DevOps-Solution_logobreak_localytics

Localytics uses AWS Lambda to create microservices that ingest Amazon Simple Storage Service files and Kinesis data streams comprising about 100 billion data points each month.
Read the case study »


Provision, configure, and manage your AWS infrastructure resources using code and templates. Monitor and enforce infrastructure compliance.

AWS CloudFormation

AWS CloudFormation

AWS CloudFormation gives developers and systems administrators an easy way to create and manage a collection of related AWS resources, provisioning and updating them in an orderly and predictable fashion. You can use AWS CloudFormation’s sample templates or create your own templates.
Learn more »

AWS OpsWorks

AWS OpsWorks   

AWS OpsWorks is a configuration management service that uses Chef, an automation platform that treats server configurations as code. OpsWorks uses Chef to automate how servers are configured, deployed, and managed across your Amazon Elastic Compute Cloud (Amazon EC2) instances or on-premises compute environments. OpsWorks has two offerings, AWS Opsworks for Chef Automate, and AWS OpsWorks Stacks.
Learn more »

DevOps-Solution_logobreak_simple

Simple built its online banking platform on AWS. Using AWS CloudFormation, Simple can automate processes that once took months to complete and focus on its customer service rather than managing IT infrastructure.
Watch the video »

DevOps-Solution_logobreak_toronto-star

The Toronto Star is Canada’s largest online news site. By using AWS OpsWorks, the Star reduced deployment time for its content management application from 3 hours to 20 minutes, saving costs and boosting productivity.
Read the case study »

Amazon EC2 Systems Manager

AWS Systems Manager

AWS Systems Manager is a management service that helps you automatically collect software inventory, apply OS patches, create system images, and configure Windows and Linux operating systems. These capabilities help you define and track system configurations, prevent drift, and maintain software compliance of your EC2 and on-premises configurations.
Learn more »

AWS Config

AWS Config

AWS Config is a fully managed service that provides you with an AWS resource inventory, configuration history, and configuration change notifications to enable security and governance. Config Rules enables you to create rules that automatically check the configuration of AWS resources recorded by AWS Config.
Learn more »

DevOps-Solution_logobreak_prezi

Prezi uses AWS Config to track configuration changes to Prezi's AWS resources. AWS Config sends notifications whenever resources are created, modified, or deleted. Prezi uses AWS Config rules to govern provisioning and configuration of its resources in AWS.
Read the case study »

Provision infrastructure from AWS CloudFormation templates, invoke AWS Systems Manager to track your software inventory or to configure your instances, and auto-remediate any configuration drifts with AWS Config.

 


Record logs and monitor application and infrastructure performance in near real-time. 

Amazon CloudWatch

Amazon CloudWatch

Amazon CloudWatch is a monitoring service for AWS cloud resources and the applications you run on AWS. You can use Amazon CloudWatch to collect and track metrics, collect and monitor log files, set alarms, and automatically react to changes in your AWS resources.
Learn more »

AWS X-Ray

AWS X-Ray

AWS X-Ray helps developers analyze and debug production, distributed applications, such as those built using a microservices architecture. With X-Ray, you can understand how your application and its underlying services are performing to identify and troubleshoot the root cause of performance issues and errors.
Learn more »

DevOps-Solution_logobreak_globe-mail

The Globe and Mail is Canada’s most read newspaper with a national weekly digital readership of 4.7 million. It used Amazon CloudWatch to monitor the performance of its system and adopted a DevOps approach for infrastructure automation.
Read the case study »

AWS CloudTrail

AWS CloudTrail

AWS CloudTrail is a web service that records AWS API calls for your account and delivers log files to you. The recorded information includes the identity of the API caller, the time of the API call, the source IP address of the API caller, the request parameters, and the response elements returned by the AWS service.
Learn more »

DevOps-Solution_logobreak_slack

Slack provides a messaging platform for unifying diverse communications services. Slack’s platform runs on AWS, leveraging a wide range of cloud services. The company uses AWS CloudTrail for monitoring logs related to Amazon EC2 instances.
Read the case study »


Deploy web applications without needing to provision and manage the infrastructure and application stack.

AWS Elastic Beanstalk

AWS Elastic Beanstalk

AWS Elastic Beanstalk is an easy-to-use service for deploying and scaling web applications and services developed with Java, .NET, PHP, Node.js, Python, Ruby, Go, and Docker on familiar servers such as Apache, Nginx, Passenger, and IIS.

You can simply upload your code and Elastic Beanstalk automatically handles the deployment, from capacity provisioning, load balancing, auto-scaling to application health monitoring. At the same time, you retain full control over the AWS resources powering your application and can access the underlying resources at any time.
Learn more »

DevOps-Solution_logobreak_zillow

Zillow migrated its image-processing and delivery system to AWS to solve performance issues and gain scalability. It uses Elastic Beanstalk to run a Python Imaging Library with custom code for its image processing work.
Read the case study »

DevOps-Solution_logobreak_rachio

Rachio is the creator of the Smart Sprinkler Controller, a WiFi-based irrigation controller. Rachio uses AWS Elastic Beanstalk to deploy and manage its website, apps, and APIs. 
Read the case study »


Host secure, highly scalable Git repositories in the cloud. 

AWS CodeCommit

AWS CodeCommit

AWS CodeCommit is a fully-managed source control service that makes it easy for companies to host secure and highly scalable private Git repositories. You can use CodeCommit to securely store anything from source code to binaries, and it works seamlessly with your existing Git tools.
Learn more »

DevOps-Solution_logobreak_edmunds

Using AWS CodeCommit, Edmunds.com developers have a scalable, highly available source control service that reduces costs and simplifies administration.
Read the case study »

Start your DevOps journey today. It's easy to get started with AWS by signing up for an account today.

Get started with AWS and DevOps
#####EOF##### AWS Console - Signup
#####EOF##### .NET for Developers | Code Samples, Guides, News | AWS Developer Center

Find all the .NET code samples, step-by-step guides, videos, blog content, tools, and information about live events that you need in one place. To get started, download our SDK and our AWS Toolkit for Visual Studio.

Introduction to Developing .NET on AWS

Learn

Dive deep and discover. Expand and explore.

Read and watch guidance from experts on AWS. See how to get the most from AWS. Find solutions to common challenges. Gain the knowledge to get the most from the AWS cloud.

Develop

Design and code. Build and test. Run and debug.

Get started building software with the AWS SDK for .NET, code samples, and documentation. Visual Studio IDE users can get started with the SDK easily using the AWS Toolkit for Visual Studio. The AWS Toolkit for Visual Studio is a plug-in for theVisual Studio IDE that makes it easier for developers to develop, deploy, and debug .NET applications using Amazon Web Services.

Connect

Raise questions. Get answers. Connect with AWS.

Join the community of developers developing secure, reliable, and scalable applications on the AWS cloud. Make the connections that will shift your development into the fast lane.

Join a Virtual .NET Community

#####EOF##### Python | Tutorials, APIs, SDKs, Docs | AWS Developer Center

Explore Python on AWS

New to AWS? Learn to build a modern web app with this step-by-step tutorial. 

Find all the tools, documentation, and sample code you need to develop secure, reliable, and scalable Python applications on the AWS cloud.

python programming language

Learn

Dive deep and discover. Expand and explore.

Read and watch guidance from experts on AWS. See how to get the most from AWS. Find solutions to common challenges. Gain the knowledge to get the most from the AWS cloud.

Develop

Design and code. Build and test. Run and debug.

Get started building software with the AWS SDK for Python library, code samples, and documentation.

Connect

Raise questions. Get answers. Connect with AWS.

Join the community of developers developing secure, reliable, and scalable applications on the AWS cloud. Make the connections that will shift your development into the fast lane.

#####EOF##### Amazon.com: GL.iNet GL-AR750 Travel AC Router, 300Mbps(2.4G)+433Mbps(5G) Wi-Fi, 128MB RAM, MicroSD Storage Support, OpenWrt/LEDE pre-Installed, Power Adapter and Cables Included: Computers & Accessories

Loading recommendations for this item...

Added to Cart

Not Added

Item is in your Cart

View Cart

Not Added

There was a problem adding this item to Cart. Please try again later.
Sorry, we're having trouble showing recommendations right now. Please try again later.
Continue shopping
$44.99
& FREE Shipping. Details
In Stock.
Sold by GL Technologies and Fulfilled by Amazon. Gift-wrap available.
GL.iNet+GL-AR750+Travel+A... has been added to your Cart
Include Add a Protection Plan:
Add to your order

4 Year Office Equipment Protection Plan

from Asurion, LLC
  • No deductibles or added costs. Parts, labor and shipping included.
  • Power surge covered from day one.
  • Other breakdowns covered after the manufacturer's warranty expires.
  • Includes 24/7 tech support.  File a claim online or by phone 24/7.
  • If we can't repair it, we'll replace it or reimburse the purchase price with an Amazon e-gift card.

3 Year Office Equipment Protection Plan

from Asurion, LLC
  • No deductibles or added costs. Parts, labor and shipping included.
  • Power surge covered from day one.
  • Other breakdowns covered after the manufacturer's warranty expires.
  • Includes 24/7 tech support.  File a claim online or by phone 24/7.
  • If we can't repair it, we'll replace it or reimburse the purchase price with an Amazon e-gift card.

Have one to sell? Sell on Amazon

4 Year Office Equipment Protection Plan

from Asurion, LLC
$4.99
  • No deductibles or added costs. Parts, labor and shipping included.
  • Power surge covered from day one.
  • Other breakdowns covered after the manufacturer's warranty expires.
  • Includes 24/7 tech support.  File a claim online or by phone 24/7.
  • If we can't repair it, we'll replace it or reimburse the purchase price with an Amazon e-gift card.

GL.iNet GL-AR750 Travel AC Router, 300Mbps(2.4G)+433Mbps(5G) Wi-Fi, 128MB RAM, MicroSD Storage Support, OpenWrt/LEDE pre-Installed, Power Adapter and Cables Included

by GL.iNet
3.6 out of 5 stars 77 customer reviews

Price: $44.99 & FREE Shipping. Details
    This fits your .
  • Make sure this fits by entering your model number.
  • DUAL BAND AC ROUTER: Simultaneous dual band with wireless speed 300Mbps(2.4G)+433Mbps(5G). Convert a public network(wired/wireless) to a private Wi-Fi for secure surfing.
  • OPEN SOURCE & PROGRAMMABLE: OpenWrt/LEDE pre-installed, backed by software repository.
  • OPENVPN CLIENT: OpenVPN client pre-installed, compatible with 25+ VPN service providers.
  • LARGER STORAGE & EXTENSIBILITY: 128MB RAM, 16MB NOR Flash, up to 128GB MicroSD slot, USB 2.0 port, three Ethernet ports, and optional PoE module (sold separately).
  • PACKAGE CONTENTS: GL-AR750 travel router (1-year Warranty), Power adapter, USB cable, Ethernet cable and User Manual. Please update the latest firmware at the following link before using: https://dl.gl-inet.com/firmware/ar750/v1/

Love it? Add it to your registry.

Frequently bought together

  • GL.iNet GL-AR750 Travel AC Router, 300Mbps(2.4G)+433Mbps(5G) Wi-Fi, 128MB RAM, MicroSD Storage Support, OpenWrt/LEDE pre-Installed, Power Adapter and Cables Included
  • +
  • GL.iNet GL-AR750S-Ext Gigabit Travel AC Router (Slate), 300Mbps(2.4G)+433Mbps(5G) Wi-Fi, 128MB RAM, MicroSD Support, OpenWrt/LEDE pre-Installed, Cloudflare DNS, Power Adapter and Cables Included
Total price: $114.98
Buy the selected items together

Have a question?

Find answers in product info, Q&As, reviews

Please make sure that you are posting in the form of a question.

Don't see what you're looking for?
There was a problem completing your request. Please try your search again later.
All Product Information Customer Q&A's Customer Reviews

Product Description

GL-AR750 Dual-band AC Router

  • Convert a wired or wireless network to your private network and share the Wi-Fi signals with all your devices and your travel companion(s)
  • Save time from connecting all your devices one by one every time when you access a new Wi-Fi
  • Support wired and wireless bridge, switch between router and bridge mode using the configurable switch button
  • Tether data from a USB modem or a smartphone to all devices

OpenVPN: Secure Your Online Privacy Wherever You Go
Its outstanding security protocols and data encryption technology offers an extra layer of protection wherever you go. It is the best travel accessory for business travelers, journalists, frequent flyers and anyone who feels the need to protect their privacy while surfing the internet. It supports 20+ popular OpenVPN service providers.

****************

Specifications:

  • Fast Processing powered by Qualcomm QCA9531 SoC,650MHz CPU
  • DDR2 128MB / Flash 16MB
  • 300Mbps (2.4G) + 433Mbps (5G)
  • 802.11 b/g/n/ac
  • 5V/2A power input
  • 10/100 Ethernet port x 3
  • Support microSD storage up to 128GB
  • 80 - 100 meters Wi-Fi Range (in open space)
  • 88mm*68mm*24mm, 66g (router only)


Compare with similar items


GL.iNet GL-AR750 Travel AC Router, 300Mbps(2.4G)+433Mbps(5G) Wi-Fi, 128MB RAM, MicroSD Storage Support, OpenWrt/LEDE pre-Installed, Power Adapter and Cables Included
GL.iNet GL-AR750S-Ext Gigabit Travel AC Router (Slate), 300Mbps(2.4G)+433Mbps(5G) Wi-Fi, 128MB RAM, MicroSD Support, OpenWrt/LEDE pre-Installed, Cloudflare DNS, Power Adapter and Cables Included
TP-Link N300 Wireless Portable Nano Travel Router - WiFi Bridge/Range Extender/Access Point/Client Modes, Mobile in Pocket(TL-WR802N)
GL.iNET GL-AR300M Mini Travel Router, Wi-Fi Converter, OpenWrt Pre-Installed, Repeater Bridge, 300Mbps High Performance, 128MB Nand Flash, 128MB RAM, OpenVPN, Tor Compatible, Programmable IoT Gateway
GL.iNet GL-AR300M Mini Travel Router with 2dbi external antenna, Wi-Fi Converter, OpenWrt Pre-installed, Repeater Bridge, 300Mbps High Performance, 128MB Nand flash, 128MB RAM, OpenVPN, Tor Compatible
TP-Link AC750 Wireless Wi-Fi Travel Router (TL-WR902AC)
Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart
Customer Rating 3 out of 5 stars (77) 4 out of 5 stars (56) 4 out of 5 stars (717) 4 out of 5 stars (86) 4 out of 5 stars (105) 4 out of 5 stars (552)
Price $44.99 $69.99 $27.63 $40.00 $45.00 $39.99
Shipping FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25
Sold By GL Technologies GL Technologies Amazon.com GL Technologies GL Technologies Amazon.com
Connectivity Technology ethernet, wired Wired, Wireless, Ethernet, USB wireless Wireless Wireless —
Data Transfer Rate 750 Mb per second 300 MB per second 300 Mb per second 300 Mb per second 300 Mb per second 750 Mb per second
Frequency Bands Supported 5 Ghz, 2.4 Ghz 5 Ghz, 2.4 Ghz Single-Band Single-Band — Dual-Band
Item Dimensions 4.13 x 2.83 x 1.06 in 3.94 x 2.68 x 0.94 in 2.2 x 2.2 x 0.7 in 2.28 x 2.28 x 2.28 in 2.28 x 2.28 x 0.98 in 2.64 x 2.91 x 0.87 in
Item Weight 2.33 ounces 3.03 ounces 7.2 ounces 1.41 ounces 2.68 ounces 0.5 lb
Range — — feet — — —
Number of Ethernet Ports 3 — 7 2 2 5
Wireless Compability 802.11bgn, 5.8 GHz Radio Frequency, 2.4 GHz Radio Frequency 802.11 a/b/g/n, 5.8 GHz Radio Frequency, 2.4 GHz Radio Frequency 802.11 a/b/g/n 802.11bgn 802.11bgn 802.11.ac

Product information

Warranty & Support

Product Warranty: For warranty information about this product, please click here

Feedback

If you are a seller for this product, would you like to suggest updates through seller support?
Would you like to tell us about a lower price?

Customer Questions & Answers

77 customer reviews

3.6 out of 5 stars

By customer groups & interests
Internet
3.5
Travel
3.4

Review this product

Share your thoughts with other customers

Read reviews that mention

July 18, 2018
Verified Purchase
42 people found this helpful
Comment Report abuse
February 11, 2018
Verified Purchase
23 people found this helpful
Comment Report abuse
May 14, 2018
Verified Purchase
7 people found this helpful
Comment Report abuse
April 25, 2018
Verified Purchase
6 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

GL.iNet GL-AR750 Travel AC Router, 300Mbps(2.4G)+433Mbps(5G) Wi-Fi, 128MB RAM, MicroSD Storage Support, OpenWrt/LEDE pre-Installed, Power Adapter and Cables Included
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: GL.iNet GL-AR750 Travel AC Router, 300Mbps(2.4G)+433Mbps(5G) Wi-Fi, 128MB RAM, MicroSD Storage Support, OpenWrt/LEDE pre-Installed, Power Adapter and Cables Included
Amazon FSA Store

#####EOF##### What is NoSQL? | Nonrelational Databases, Flexible Schema Data Models | AWS

What is NoSQL?

High-performance, nonrelational databases with flexible data models

What are NoSQL databases?

NoSQL databases are purpose built for specific data models and have flexible schemas for building modern applications. NoSQL databases are widely recognized for their ease of development, functionality, and performance at scale. They use a variety of data models, including document, graph, key-value, in-memory, and search. This page includes resources to help you better understand NoSQL databases and to get started.

 

Databases on AWS: The Right Tool for the Right Job

How Does a NoSQL (nonrelational) Database Work?

NoSQL databases use a variety of data models for accessing and managing data, such as document, graph, key-value, in-memory, and search. These types of databases are optimized specifically for applications that require large data volume, low latency, and flexible data models, which are achieved by relaxing some of the data consistency restrictions of other databases.

Consider the example of modeling the schema for a simple book database:

  • In a relational database, a book record is often dissembled (or “normalized”) and stored in separate tables, and relationships are defined by primary and foreign key constraints. In this example, the Books table has columns for ISBN, Book Title, and Edition Number, the Authors table has columns for AuthorID and Author Name, and finally the Author-ISBN table has columns for AuthorID and ISBN. The relational model is designed to enable the database to enforce referential integrity between tables in the database, normalized to reduce the redundancy, and generally optimized for storage.
  • In a NoSQL database, a book record is usually stored as a JSON document. For each book, the item, ISBN, Book Title, Edition Number, Author Name, and AuthorID are stored as attributes in a single document. In this model, data is optimized for intuitive development and horizontal scalability.

Why should you use a NoSQL database?

NoSQL databases are a great fit for many modern applications such as mobile, web, and gaming that require flexible, scalable, high-performance, and highly functional databases to provide great user experiences.

  • Flexibility: NoSQL databases generally provide flexible schemas that enable faster and more iterative development. The flexible data model makes NoSQL databases ideal for semi-structured and unstructured data.
  • Scalability: NoSQL databases are generally designed to scale out by using distributed clusters of hardware instead of scaling up by adding expensive and robust servers. Some cloud providers handle these operations behind-the-scenes as a fully managed service.
  • High-performance: NoSQL database are optimized for specific data models (such as document, key-value, and graph) and access patterns that enable higher performance than trying to accomplish similar functionality with relational databases.
  • Highly functional: NoSQL databases provide highly functional APIs and data types that are purpose built for each of their respective data models.

Types of NoSQL Databases

nosql_keyvalue_g

Key-value: Key-value databases are highly partitionable and allow horizontal scaling at scales that other types of databases cannot achieve. Use cases such as gaming, ad tech, and IoT lend themselves particularly well to the key-value data model. Amazon DynamoDB is designed to provide consistent single-digit millisecond latency for any scale of workloads. This consistent performance is a big part of why the Snapchat Stories feature, which includes Snapchat's largest storage write workload, moved to DynamoDB.

nosql_document_g

Document: In application code, data is represented often as an object or JSON-like document because it is an efficient and intuitive data model for developers. Document databases make it easier for developers to store and query data in a database by using the same document model format that they use in their application code. The flexible, semistructured, and hierarchical nature of documents and document databases allows them to evolve with applications’ needs. The document model works well with catalogs, user profiles, and content management systems where each document is unique and evolves over time. Amazon DocumentDB (with MongoDB compatibility) and MongoDB are popular document databases that provide powerful and intuitive APIs for flexible and iterative development.

nosql_graph_g

Graph: A graph database’s purpose is to make it easy to build and run applications that work with highly connected datasets. Typical use cases for a graph database include social networking, recommendation engines, fraud detection, and knowledge graphs. Amazon Neptune is a fully-managed graph database service. Neptune supports both the Property Graph model and the Resource Description Framework (RDF), providing the choice of two graph APIs: TinkerPop and RDF/SPARQL. Popular graph databases include Neo4j and Giraph.

nosql_inmemory_g

In-memory: Gaming and ad-tech applications have use cases such as leaderboards, session stores, and real-time analytics that require microsecond response times and can have large spikes in traffic coming at any time. Amazon ElastiCache offers Memcached and Redis, to serve low-latency, high-throughput workloads, such as McDonald’s, that cannot be served with disk-based data stores. Amazon DynamoDB Accelerator (DAX) is another example of a purpose-built data store. DAX makes DynamoDB reads an order of magnitude faster.

nosql_search_g

Search: Many applications output logs to help developers troubleshoot issues. Amazon Elasticsearch Service (Amazon ES) is purpose built for providing near-real-time visualizations and analytics of machine-generated data by indexing, aggregating, and searching semistructured logs and metrics. Amazon ES also is a powerful, high-performance search engine for full-text search use cases. Expedia is using more than 150 Amazon ES domains, 30 TB of data, and 30 billion documents for a variety of mission-critical use cases, ranging from operational monitoring and troubleshooting to distributed application stack tracing and pricing optimization.

SQL (relational) vs. NoSQL (nonrelational) databases

For decades, the predominant data model that was used for application development was the relational data model used by relational databases such as Oracle, DB2, SQL Server, MySQL, and PostgreSQL. It wasn’t until the mid to late 2000s that other data models began to gain significant adoption and usage. To differentiate and categorize these new classes of databases and data models, the term “NoSQL” was coined. Often the term “NoSQL” is used interchangeably with “nonrelational.”

Though there are many types of NoSQL databases with varying features, the following table shows some of the differences between SQL and NoSQL databases.

Getting Started with NoSQL
  Relational databases NoSQL databases

Optimal workloads

Relational databases are designed for transactional and strongly consistent online transaction processing (OLTP) applications and are good for online analytical processing (OLAP). NoSQL key-value, document, graph, and in-memory databases are designed for OLTP for a number of data access patterns that include low-latency applications. NoSQL search databases are designed for analytics over semi-structured data. 
Data model

The relational model normalizes data into tables that are composed of rows and columns. A schema strictly defines the tables, rows, columns, indexes, relationships between tables, and other database elements. The database enforces the referential integrity in relationships between tables. 

NoSQL databases provide a variety of data models that includes document, graph, key-value, in-memory, and search.
ACID properties

Relational databases provide atomicity, consistency, isolation, and durability (ACID) properties:

  • Atomicity requires a transaction to execute completely or not at all.
  • Consistency requires that when a transaction has been committed, the data must conform to the database schema.
  • Isolation requires that concurrent transactions execute separately from each other.
  • Durability requires the ability to recover from an unexpected system failure or power outage to the last known state.
NoSQL databases often make tradeoffs by relaxing some of the ACID properties of relational databases for a more flexible data model that can scale horizontally. This makes NoSQL databases an excellent choice for high throughput, low-latency use cases that need to scale horizontally beyond the limitations of a single instance.
Performance Performance is generally dependent on the disk subsystem. The optimization of queries, indexes, and table structure is often required to achieve peak performance. Performance is generally a function of the underlying hardware cluster size, network latency, and the calling application.
Scale Relational databases typically scale up by increasing the compute capabilities of the hardware or scale-out by adding replicas for read-only workloads. NoSQL databases typically are partitionable because key-value access patterns are able to scale out by using distributed architecture to increase throughput that provides consistent performance at near boundless scale.
APIs Requests to store and retrieve data are communicated using queries that conform to a structured query language (SQL). These queries are parsed and executed by the relational database. Object-based APIs allow app developers to easily store and retrieve in-memory data structures. Partition keys let apps look up key-value pairs, column sets, or semistructured documents that contain serialized app objects and attributes.

SQL vs. NoSQL Terminology

The following table compares terminology used by select NoSQL databases with terminology used by SQL databases.

SQL MongoDB DynamoDB Cassandra  Couchbase
Table Collection Table Table Data bucket
Row Document Item Row Document
Column Field Attribute Column Field
Primary key ObjectId Primary key
Primary key Document ID
Index Index Secondary index Index Index
View View Global secondary index Materialized view View
Nested table or object Embedded document Map Map Map
Array Array List List List
List
List
Primary key

Get started with DynamoDB

It's easy to get started with DynamoDB. See the DynamoDB Getting Started webpage to create your first table in a few clicks. You also can download an AWS whitepaper, to learn best practices for migrating workloads from a relational database management system (RDBMS) to DynamoDB.

What is Amazon DynamoDB?
#####EOF##### クラウドならアマゾン ウェブ サービス 【AWS 公式】

製品を調べる

コンピューティング
データベース
IoT
機械学習
マネジメントとガバナンス
セキュリティ、アイデンティティ、コンプライアンス

お客様のイノベーションを促進する

  • エンタープライズトランスフォーメーション
  • 予測分析
  • 機械学習
  • サーバーレス
  • ゲーム
  • エンタープライズアプリケーション
  • エンタープライズトランスフォーメーション
  • PI-C1_Logo

    Capital One が AWS を使用してバンキングの新たな姿を創造する

    Capital One が教育と長期計画を通じ、また常に顧客のニーズに集中することにより、クラウドファースト戦略を進めた事例をご覧ください。
    詳細はこちら 
    PI-C1_Mobile_Step-1

    お客様にフォーカスする

    2014 年、Capital One のプライベートクラウドはまだできたばかりで、AWS も試用の段階でした。顧客が求める機能をできるだけ短期間で構築するため、同社は AWS の導入を決めました。

    PI-C1_Mobile_Step-2

    困難なところから手を付ける

    金融機関の Capital One にとって、セキュリティとコンプライアンスは非常に重要です。これらのニーズに対応するため、Capital One ではクラウドリスクフレームワークを構築しクラウドガバナンス機能を確立してから、ワークロードを 1 つ AWS に移行しました。

    PI-C1_Mobile_Step-3

    クラウド化への鍵となった教育

    Capital One は、AWS 上で直接作業するエンジニアや、クラウドコンピューティングの力を紹介し広めていくための知識を必要とする技術者以外の関係者に、クラウドトレーニングプログラムを提供しています。同社は現在、AWS Certification を持つ従業員の数で世界トップ 3 にランクインしています。

    PI-C1_Mobile_Step-4

    クラウドの恩恵を得る

    AWS を利用することで、Capital One では、新商品の市場投入までの期間が数年や数か月から数週間に短縮され、機械学習を利用してカスタマーエクスペリエンスも向上しています。また、開発者やエンジニアなど一流の人材が集まってきています。これらすべてが、「お客様のために優れたサービスを作り上げる」という同社の最も重要な目標の達成につながっています。

  • 予測分析
  • F1-Insights-logo-power-by-AWS

    Formula One Group は Amazon SageMaker を使用してレーシングを最適化

    Formula 1 が Amazon SageMaker やその他の AWS サービスを使用し、どのようにレーシング決定の最適化とファンの体験改善を行っているかご覧ください。
    詳細はこちら 
    PI-F1-1-mobile-beginning-a-transformation-ending

    変換を開始

    Formula One Group ではインフラストラクチャの大部分をオンプレミスのデータセンターから AWS へ移動し、Amazon SageMaker を含む AWS 機械学習サービスで標準化しています。

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    機械学習によるレーシング最適化

    過去 65 年以上にわたる、車から収集されたレースデータの履歴を使用して、Formula 1 のデータサイエンティストは深層学習モデルのトレーニングをしてレース予測を行い、チームがレース中の意思決定を最適化するのに役立てています。モデルは、チームが車をいつピットインさせるべきかを予測し、タイヤの交換のベストタイミングを決定し、ドライバーのパフォーマンスを評価することができます。

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    トラックにファンを引き込む

    その後 Formula 1 は、AWS データストリーミング、分析、メディアサービスを使用して、5 億人を超えるファンにドライバーの意思決定と車のパフォーマンスに関するインサイトを提供しています。

    PI-F1-4-mobile-building-for-the-future-ending

    未来志向の構築

    Formula 1 は AWS のスケーラブルな環境で高性能のコンピューティングワークロードを実行するため、組織は容量の心配をすることなく Formula 1 のレーシングエクスペリエンスやカーデザインなどの革新を図ることができます。

  • 機械学習
  • Logo_Statcast-AI

    MLB Statcast は、ファンの盛り上がりを AWS でのビッグデータ分析によりもたらす

    アメリカのプロ野球リーグが AWS Machine Learning を利用して統計に意味をもたらす方法をご覧ください。
    詳細はこちら 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    深層学習向けの基盤

    MLB は数十年にわたり、選手とクラブの統計データを収集しており、2015 年には AWS の使用を開始してゲーム日の統計情報を収集、配布しファンエクスペリエンスを向上させました。

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    開発者の強化

    Amazon SageMaker を使用することで、MLB は開発者やデータサイエンティストが機械学習モデルをあらゆる規模で、短期間で簡単に構築、トレーニング、デプロイできるようにしています。

    PI-MLB-3-Lightening the Load-ending stage

    負荷の軽減

    処理された各プレイのデータは、Amazon S3 に保存されます。

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    ゲームのパーソナライズ

    MLB は、ピッチ予測の精度テストやパーソナライズされたビューワーエクスペリエンスの創造など、選手のパフォーマンスを分析する Statcast のトラッキング技術の改善を継続するため、Amazon ML Solutions Lab との連携を計画しています。

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    人工知能によるホームラン

    MLB は人工知能を利用した革新を続けます。組織は、Amazon Comprehend を使用して、アイコン的なアナウンサーをシミュレートするライブゲーム向けのスクリプトを作成することができる言語モデルを構築する予定です。

  • サーバーレス
  • Matson-logo

    Matson における AWS を利用した海外輸送およびロジスティック事業

    Matson が AWS を使用して、イノベーションとワールドクラスのカスタマーサービスを推進し、運用上の信頼性やセキュリティ、およびインフラストラクチャのコスト削減を実現している方法について説明します。
    詳細はこちら 
    PI-Matson-Mobile_Step-1

    リアルタイムのコンテナ追跡

    Matson ではコンテナをグローバルに追跡できる主力モバイルアプリケーションを構築し、お客様がご自身の輸送貨物をリアルタイムで追跡できるようにしています。このアプリケーションには、他にもインタラクティブな貨物船スケジュール検索、位置情報に基づく港の地図検索、ゲート地点のライブカメラ映像といった役立つ機能が用意されています。

    PI-Matson-Mobile_Step-2

    モバイル端末でのアクセス

    モバイルデバイスから AWS へのアクセスは常に Amazon API Gateway 経由で行われるため、可用性の高いエッジロケーションのエンドポイントから、Matson の既存の仮想プライベートクラウド上のリソースにアクセスできます。

    PI-Matson-Mobile_Step-3

    サーバーレスコンピューティング

    AWS Lambda 関数は、マイクロサービス向けのパターンを利用して設計されており、貨物の追跡や貨物船のスケジュールといった海上を拠点としたビジネスに固有の状況に応じてモデル化されています。 

    PI-Matson-Mobile_Step-4

    データベースの設定とストレージ

    モバイルデバイスから送信されるユーザーフィードバックの設定とユーザーフィードバックの通知の設定は、Amazon DynamoDB で管理されます。リアルタイムの通知は DynamoDB ストリームによって Matson のカスタマーサービスチームに送られます。 

    PI-Matson-Mobile_Step-5

    データのモニタリングとアラート

    Matson をご利用になるお客様は、コンテナ追跡と貨物船のステータスに関する正確な最新の情報を必要としています。システムイベントのモニタリングとアラートは、Amazon CloudWatch、Amazon SNS、Amazon SES、AWS Lambda、CloudWatch Logs を使用してアーカイブされます。 

    PI-Matson-Mobile_Step-6

    エンドツーエンドのサーバーレスアプリケーション

    Matson では、エンドツーエンドのサーバーレスアプリケーションを提供することで、お客様に貨物を追跡していただけるようになりました。さらに、インフラストラクチャの管理も不要になりました。

  • ゲーム
  • PI-Epic_Logo_Final
    Epic Games が AWS を使用してゲーム『 Fortnite』を世界で展開
    Epic Games が AWS を使用して、2億人を超える世界中のプレイヤーに『 Fortnite』を配信している事例をご覧ください。
    詳細はこちら 
    PI-Epic-Mobile_Step-1

    クラウドで基盤を構築する

    Epic Games は 2012 年から AWS を利用しています。現在はすべてを AWS クラウドに移して、世界規模のゲームサーバーフリート、バックエンドプラットフォームシステム、データベース、ウェブサイト、アナリティクスパイプライン、処理システムなどを AWS で実行しています。

    PI-Epic-Mobile_Step-2

    瞬く間に人気ゲームに

    Epic Games が 2017 年にリリースしたクロスプラットフォームのマルチプレイヤーゲーム『Fortnite』は、瞬く間に人気を博しました。リリース後最初の1年で、Fortnite のユーザーベースは 100 倍以上に膨れ上がり、世界中で 2 億人に達しました。

    PI-Epic-Mobile_Step-3

    拡張性の限界を超える

    AWS は Fortnite の成功に不可欠でした。AWS を利用することで、Epic Games はキャパシティーを心配することなく何億人ものユーザーを招待してゲーム内イベントを開催したり、1 分間に 1 億 2,500 万件ものイベントをアナリティクスパイプラインに取り込んだり、1 か月に 5PB を超えるデータウェアハウスの増加に対応したりしています。

    PI-Epic-Mobile_Step-4

    最上級のゲーム体験を提供する

    AWS を利用することで、Epic Games は常にプレイヤー体験を向上し、ワクワクするような新しいゲームやゲーム要素を提供しています。同社では今後、機械学習やコンテナ化されたサービスなど、AWS のサービスの利用を拡大していく予定です。

  • エンタープライズアプリケーション
  • BPP_ylw_logo

    BP は効率を高めて、重要なビジネスアプリケーションのコストの俊敏性と高速性を実現しています

    BP が、SAP アプリケーションスイートを簡素化および最新化し、ユーザーエクスペリエンスを向上させつつコストの俊敏性とパフォーマンスの強化を達成した方法をご覧ください。
    詳細はこちら 
    PI-BP-Mobile_Step-1

    重要なビジネスアプリケーションを管理

    BP の IT 部門は、世界中の何千もの従業員がサプライチェーン、調達、財務などの分野で使用する SAP アプリケーションを管理しています。 

    PI-BP-Mobile_Step-2

    スピードとコストの俊敏性を向上

    BP では、スピードを高めてコストの俊敏性を達成するために、Amazon EC2 を使用して中核となるビジネスアプリケーションをクラウドに移行しました。さらに、BP のチームは EC2 X1 インスタンスを構築して規模を拡大し、リアルタイム分析を強化しました。

    PI-BP-Mobile_Step-3

    パフォーマンスの向上

    チームは、数週間や数か月間ではなく、数時間で需要に応じてシステムを立ち上げることができるようになりました。BP では、Lubricants ERP システムの速度が 40% 向上するなど、パフォーマンスの全体的な向上が見られています。 

    PI-BP-Mobile_Step-4

    データの保護

    BP では、クラウドに移行するときに、AWS Config、AWS Identity and Access Management (IAM)、Amazon CloudWatch、AWS Trusted Advisor を使用して自社のセキュリティ基準を再設定しました。その新しい基準に従って、IT 部門を運営するための安全なフレームワークを開発することができました。

AWSMP_logo_new-RGB

検索する。購入する。デプロイする。

AWS Marketplace のデジタルカタログには何千ものソフトウェアが独立ソフトウェアベンダーから出品されています。AWS で動作するソフトウェアの検索、テスト、購入、デプロイが簡単に行えます。
詳細はこちら 

ソリューションを調べる

60-machine-learning
場所を問わず、強力なサービスとプラットフォームや幅広い機械学習フレームワークサポートで構築します。
60-analytics
単一の集中リポジトリの中で、データの保存、分類、分析をセキュアに実行します。
60-IoT
物質の世界をクラウドに接続するユビキタスデバイス群のシステムです。
60-serverless
サーバーにわずらわされることなく、アプリケーションやサービスを構築し、実行します。
60-containers
軽量で、どこでも簡単にアプリケーションを実行およびスケールできる、一貫したポータブルソフトウェア環境を実現するアプリケーションをパッケージにしてデプロイします。
60-enterprise
成熟した一群のサービスによって構築され、大規模な組織特有のセキュリティ、コンプライアンス、プライバシー、ガバナンスの要件を満たすよう設計されています。
60-storage
ペタバイト規模でのバックアップ、災害対策、データアーカイブのための、耐久性とコスト効率に優れたオプションです。
60-windows-workloads
Microsoft アプリケーション向けの柔軟でスケーラブルなコンピューティング性能。Windows ワークロードを簡単に管理し、保護できます。

最も厳しい要件に対応できる設計

icon-security

セキュア

最も厳しい要件を満たす包括的なセキュリティ機能です。
icon-compliant

準拠

管理、監査が充実しており、幅広いセキュリティ認定に対応します。
icon-hybrid

ハイブリッド

オンプレミスのインフラストラクチャをクラウドに拡張するハイブリッドアーキテクチャを構築します。
icon-scalable

スケーラブル

ちょうど必要な量のリソースを利用でき、必要に応じて、スケールアップやスケールダウンをわずか数分で行えます。

お客様の AWS での構築事例を見る

AWS リージョンのグローバルネットワーク

AWS クラウドは世界中の 20 の地理的リージョンにある 61 のアベイラビリティーゾーンで運用されており、さらに 4 つのリージョン (バーレーン、ケープタウン、香港特別行政区、ミラノ) と 12 のアベイラビリティーゾーンが追加される予定です。
2019 Infra Map - PDX
Key_AZ

リージョンとアベイラビリティーゾーンの数

米国東部
バージニア北部 (6)、オハイオ (3)

米国西部
北カリフォルニア (3)、オレゴン (4)

アジアパシフィック
ムンバイ (2)、ソウル (2)、シンガポール (3)、シドニー (3)、東京 (4)、大阪ローカル (1)

カナダ
中部 (2)

中国
北京 (3)、寧夏 (2)

欧州
フランクフルト (3)、アイルランド (3)、ロンドン (3)、パリ (3)、ストックホルム (3)

南米
サンパウロ (3)

GovCloud (米国)
米国東部 (3)、米国西部 (3)

Key_Coming-Soon

新しいリージョン (近日追加予定)

バーレーン

ケープタウン

香港

ミラノ

詳細 
#####EOF##### AWS | Cloud Computing - Servicios de informática en la nube

Conozca nuestros productos

Respaldamos la innovación de los clientes

  • Transformación empresarial
  • Análisis predictivos
  • Aprendizaje automático
  • SIN SERVIDOR
  • Juegos
  • APLICACIONES EMPRESARIALES
  • Transformación empresarial
  • PI-C1_Logo

    Capital One volvió a concibir la banca con AWS

    Conozca cómo Capital One implementó su estrategia de prioridad de la nube a través de la educación, la planificación a largo plazo y el enfoque constante en las necesidades de los clientes.
    Más información 
    PI-C1_Mobile_Step-1

    Enfoque en los clientes

    En 2014, Capital One tenía una incipiente capacidad de nube privada y también estaba experimentando con AWS. En un esfuerzo por desarrollar las características que sus clientes querían lo más rápido posible, la empresa optó por buscar la solución en AWS.

    PI-C1_Mobile_Step-2

    La parte difícil primero

    La seguridad y la conformidad con críticos para Capital One como institución financiera. Para abordar estas necesidades, Capital One creó un marco de riesgo de la nube y estableció una función de control en esta tecnología antes de trasladar una carga de trabajo única a AWS.

    PI-C1_Mobile_Step-3

    Educación: la clave para trasladarse a la nube

    Capital One ofrece un programa de formación en la nube para los ingenieros que trabajan directamente en AWS, así como para las partes interesadas sin conocimientos técnicos que necesitan poder defender el potencial de la informática en la nube. La compañía ahora se ubica entre las tres principales empresas de todo el mundo en cuanto a las certificaciones de AWS que tienen los empleados.

    PI-C1_Mobile_Step-4

    Materializar los beneficios de la nube

    Al utilizar AWS, Capital One lleva al mercado nuevos productos en semanas en lugar de meses o años, utiliza el aprendizaje automático para mejorar la experiencia del cliente y atrae a los mejores desarrolladores e ingenieros, todo lo cual ayuda a la compañía a lograr su objetivo más importante: crear experiencias experiencias para su clientes.

  • Análisis predictivos
  • F1-Insights-logo-power-by-AWS

    Formula One Group usa Amazon SageMaker para optimizar las carreras

    Conozca de qué manera la Fórmula 1 usa Amazon SageMaker y otros servicios de AWS para optimizar las decisiones relacionadas con las carreras y mejorar la experiencia de los seguidores.
    Más información 
    PI-F1-1-mobile-beginning-a-transformation-ending

    El comienzo de una transformación

    El Grupo Fórmula Uno está migrando la mayor parte de su infraestructura de centros de datos locales a AWS y estandarizando en servicios de aprendizaje automático de AWS, incluido Amazon SageMaker.

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    Optimización de carreras con el aprendizaje automático

    Mediante datos de carreras históricos recopilados a partir de automóviles durante los últimos 65 años, los científicos de datos de la Fórmula 1 están entrenando modelos de aprendizaje profundo para que realicen predicciones de carreras y ayuden a los equipos a optimizar decisiones durante una carrera. Los modelos pueden predecir cuándo los equipos deberían realizar paradas técnicas para los automóviles, determinar el mejor momento para cambiar los neumáticos y evaluar el desempeño de los conductores.

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    Incorporación de los seguidores a la pista

    A continuación, la Fórmula 1 utiliza streaming de datos, análisis y servicios multimedia de AWS para distribuir información sobre las decisiones de los conductores y el rendimiento de los automóviles a sus más de 500 millones de seguidores.

    PI-F1-4-mobile-building-for-the-future-ending

    Formación del futuro

    Como la Fórmula 1 ejecuta sus cargas de trabajo informáticas de alto rendimiento en un entorno escalable en AWS, la organización puede realizar innovaciones en el diseño de automóviles, la experiencia de las carreras de la Fórmula 1, entre otras cosas, sin preocuparse por la capacidad.

  • Aprendizaje automático
  • Logo_Statcast-AI

    La MLB selecciona a AWS como proveedor oficial del servicio de aprendizaje automático

    Descubra de qué manera la Liga de Béisbol Profesional de Estados Unidos le da sentido a las estadísticas a través de AWS Machine Learning
    Más información 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    Una base para el aprendizaje profundo

    La MLB ha recopilado datos estadísticos sobre sus jugadores y clubes durante décadas. En 2015, comenzó a usar servicios de AWS para recopilar y distribuir estadísticas de los partidos del día a fin de mejorar la experiencia de los seguidores.

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    Mayor capacidad de acción para los desarrolladores

    Gracias a Amazon Sagemaker, la MLB puede permitir a sus desarrolladores y científicos de datos crear, entrenar e implementar de manera rápida y fácil modelos de aprendizaje automático a escala.

    PI-MLB-3-Lightening the Load-ending stage

    Menor carga

    Estos modelos ayudan a la MLB a eliminar procesos manuales y que consumen mucho tiempo asociados con las estadísticas y la conservación de registros, como el almacenamiento de puntajes, el registro de las notas sobre los partidos y la clasificación de los lanzamientos.

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    Personalización de partidos

    El objetivo de la MLB es trabajar con Amazon ML Solutions Lab para continuar mejorando Statcast (su tecnología de seguimiento que analiza el rendimiento de los jugadores) incluida las pruebas de la precisión de las predicciones de los lanzamientos y la creación de experiencias personalizadas para los espectadores.

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    Un jonrón con inteligencia artificial

    La MLB continuará innovado mediante el uso de inteligencia artificial La organización planea utilizar Amazon Comprehend para crear un modelo de lenguaje que pueda crear secuencias de comandos para partidos en directo que simulen presentadores emblemáticos.

  • SIN SERVIDOR
  • Matson-logo

    Matson utiliza AWS para el funcionamiento de su negocio internacional de logística y envío

    Conozca de qué manera Matson usa AWS para promover la innovación y un servicio al cliente de nivel internacional, al mismo tiempo que logra fiabilidad operativa, seguridad y ahorro de costos en infraestructura.
    Más información 
    PI-Matson-Mobile_Step-1

    Seguimiento de contenedores en tiempo real

    Matson creó una aplicación móvil de referencia para el seguimiento internacional de contenedores que permite a los clientes realizar un seguimiento en tiempo real de sus envíos de carga. Otras características útiles de la aplicación incluyen la búsqueda interactiva de cronogramas de buques, las búsquedas de mapas de puertos basadas en ubicaciones y la actividad en directo de las cámaras de las puertas.

    PI-Matson-Mobile_Step-2

    Acceso desde dispositivos móviles

    Todos los dispositivos móviles obtienen acceso a AWS mediante Amazon API Gateway. Este método ofrece puntos de enlace con alta disponibilidad ubicados en bordes para el acceso a los recursos dentro de las nubes privadas virtuales existentes de Matson.

    PI-Matson-Mobile_Step-3

    Informática sin servidor

    Las funciones de AWS Lambda están diseñadas con un patrón de microservicios y adaptadas en función de contextos comerciales específicos basados en océanos, como el seguimiento de los envíos y los cronogramas de los buques.  

    PI-Matson-Mobile_Step-4

    Configuración y almacenamiento de bases de datos

    Amazon DynamoDB administra la configuración, además de la configuración de los comentarios de los usuarios y las notificaciones de comentarios de los usuarios que se envían desde dispositivos móviles. DynamoDB Streams suministra notificaciones en tiempo real al equipo de atención al cliente de Matson. 

    PI-Matson-Mobile_Step-5

    Alertas y monitoreo de datos

    Los clientes de Matson confían en la información de estado del buque y en el seguimiento de contenedores preciso y por minuto. El monitoreo y las alertas de eventos del sistema se logran mediante el uso de los servicios Amazon CloudWatch, Amazon SNS, Amazon SES, AWS Lambda y CloudWatch Logs.  

    PI-Matson-Mobile_Step-6

    Aplicación integral sin servidor

    Matson ahora puede ofrecer a sus clientes una aplicación integral sin servidor que los ayuda a realizar un seguimiento de sus envíos, sin infraestructura para mantener.

  • Juegos
  • PI-Epic_Logo_Final
    Epic Games utiliza AWS para potenciar el juego mundial Fortnite
    Conozca cómo Epic Games utiliza AWS para llevar a Fortnite a más de 200 millones de jugadores en todo el mundo.
    Más información 
    PI-Epic-Mobile_Step-1

    Crear las bases en la nube

    Epic Games ha estado utilizando AWS desde 2012 y ahora se encuentra en la nube de AWS, donde ejecuta su flota mundial de servidores de juegos, sistemas de plataforma backend, bases de datos, sitios web, canalización de análisis y sistemas de procesamiento en AWS.

    PI-Epic-Mobile_Step-2

    Un éxito de la noche a la mañana

    En 2017, Epic Games lanzó Fortnite, un juego multiplataforma y multijugador que se convirtió en un éxito de la noche a la mañana. En su primer año, la base de usuarios de Fortnite creció en más de 100 veces hasta llegar a 200 millones de jugadores en todo el mundo.

    PI-Epic-Mobile_Step-3

    Mover los límites de la escala

    AWS fue parte integral del éxito de Fortnite. Con AWS, Epic Games puede organizar eventos en el mismo juego con cientos de millones de usuarios invitados sin tener que preocuparse por la capacidad, incorpora 125 millones de eventos por minuto en su canalización de análisis y maneja un crecimiento de más de 5 PB por mes en el almacén de datos.

    PI-Epic-Mobile_Step-4

    Ofrecer la mejor experiencia de juego

    Con AWS, Epic Games siempre mejora la experiencia de sus jugadores y ofrece juegos y elementos nuevos y emocionantes. La compañía planea expandir su uso de los servicios de AWS en el futuro, incluyendo el aprendizaje automático y los servicios en contenedores.

  • APLICACIONES EMPRESARIALES
  • BPP_ylw_logo

    BP mejora el nivel de eficiencia y logra mayor velocidad y agilidad en costos para sus aplicaciones empresariales fundamentales

    Vea de qué manera BP simplificó y modernizó su conjunto de aplicaciones de SAP, lo que le permitió mejorar la experiencia del usuario y, al mismo tiempo, lograr agilidad en los costos y un rendimiento optimizado.
    Más información 
    PI-BP-Mobile_Step-1

    Administrar aplicaciones empresariales fundamentales

    La organización de TI de BP administra las aplicaciones de SAP que utilizan miles de empleados de todo el mundo para tareas de cadena de suministro, compras, finanzas, entre otras. 

    PI-BP-Mobile_Step-2

    Mejora de la velocidad y la agilidad en los costos

    Con el objetivo de mejorar la velocidad y lograr agilidad en los costos, BP usó Amazon EC2 para migrar estas aplicaciones empresariales fundamentales a la nube. Además, el equipo creó instancias X1 de EC2 para incrementar la escala y respaldar el análisis en tiempo real.

    PI-BP-Mobile_Step-3

    Incrementar el nivel de rendimiento

    Ahora el equipo puede poner sistemas en funcionamiento en horas en vez de semanas o meses. BP está observando incrementos en el nivel de rendimiento de manera general, incluida una mejora de velocidad del 40 por ciento en el sistema Lubricants ERP. 

    PI-BP-Mobile_Step-4

    Proteger datos

    Como parte de la migración a la nube, BP reajustó estándares de seguridad mediante el uso de los servicios AWS Config, AWS Identity and Access Management (IAM), Amazon CloudWatch y AWS Trusted Advisor. Estos nuevos estándares ayudaron a BP a desarrollar un marco seguro para el funcionamiento de su organización de TI.

AWSMP_logo_new-RGB

Buscar. Comprar. Implementar.

AWS Marketplace es un catálogo digital con miles de productos de software de proveedores de software independientes que facilitan la búsqueda, la aplicación de pruebas, la compra y la implementación de software que se ejecuta en AWS.
Más información 

Analice nuestras soluciones

60-machine-learning
Cree soluciones con plataformas y servicios eficientes, y con la compatibilidad con marcos de aprendizaje automático más amplia disponible.
60-analytics
Almacene, categorice y analice de manera segura todos sus datos en un único repositorio centralizado.
60-IoT
Un sistema de dispositivos amplios que conectan el mundo físico con la nube.
60-serverless
Cree y ejecute aplicaciones y servicios sin preocuparse por los servidores.
60-containers
Empaquete e implemente aplicaciones ligeras y proporcione un entorno de software estable y portátil para poder ejecutar de forma sencilla las aplicaciones y escalarlas en cualquier ubicación.
60-enterprise
Cree con un conjunto sólido de servicios específicamente diseñados para cumplir los requisitos únicos de seguridad, conformidad, privacidad y gestión de las grandes organizaciones.
60-storage
Opciones duraderas y rentables para copias de seguridad, recuperación de desastres y archivo de datos a escala de petabytes.
60-windows-workloads
Capacidad de cómputo flexible y escalable para aplicaciones de Microsoft. Administre y proteja cargas de trabajo de Windows de forma segura.

Diseñado para satisfacer los requisitos más exigentes

icon-security

Seguridad

Funciones de seguridad integrales para cumplir los requisitos más exigentes.
icon-compliant

Conformidad

Controles mejorados, auditoría y acreditaciones para una seguridad completa.
icon-hybrid

Solución híbrida

Cree arquitecturas híbridas para ampliar la infraestructura local en la nube.
icon-scalable

Escalabilidad

Obtenga acceso a los recursos que necesite y aumente o reduzca la escala con unos pocos minutos de anticipación.

Conozca de qué manera nuestros clientes crean soluciones en AWS

Red global de regiones de AWS

La nube de AWS incluye 61 zonas de disponibilidad en 20 regiones geográficas de todo el mundo. Además, se anunciaron planes para incorporar 12 zonas de disponibilidad y 4 regiones adicionales en Baréin, Ciudad del Cabo, Hong Kong y Milán.
2019 Infra Map - PDX
Key_AZ

Regiones y número de zonas de disponibilidad

EE.UU. Este
Norte de Virginia (6), Ohio (3)

EE. UU. Oeste
Norte de California (3), Oregón (4)

Asia Pacífico
Mumbai (2), Seúl (2), Singapur (3), Sídney (3), Tokio (4), Osaka-Local (1)

Canadá
Central (2)

China
Pekín (2), Ningxia (3)

Europa
Fráncfort (3), Irlanda (3), Londres (3), París (3), Estocolmo (3)

América del Sur
São Paulo (3)

GovCloud (EE.UU.)
EE.UU.-Este (3), EE.UU.-Oeste (3)

Key_Coming-Soon

Nueva región (próximamente)

Baréin

Ciudad del Cabo

Hong Kong

Milán

Más información 
#####EOF##### AWS Service Health Dashboard - Apr 4, 2019 PDT

Amazon Web Services  »  Service Health Dashboard

Get a personalized view of AWS service health

Open the Personal Health Dashboard

Current Status - Apr 4, 2019 PDT

Amazon Web Services publishes our most up-to-the-minute information on service availability in the table below. Check back here any time to get current status information, or subscribe to an RSS feed to be notified of interruptions to each individual service. If you are experiencing a real-time, operational issue with one of our services that is not described below, please inform us by clicking on the "Contact Us" link to submit a service issue report. All dates and times are Pacific Time (PST/PDT).

Contact Us
Recent Events Details RSS
No recent events.
Remaining Services Details RSS
Alexa for Business (N. Virginia) Service is operating normally
Amazon API Gateway (Montreal) Service is operating normally
Amazon API Gateway (N. California) Service is operating normally
Amazon API Gateway (N. Virginia) Service is operating normally
Amazon API Gateway (Ohio) Service is operating normally
Amazon API Gateway (Oregon) Service is operating normally
Amazon AppStream 2.0 (N. Virginia) Service is operating normally
Amazon AppStream 2.0 (Oregon) Service is operating normally
Amazon Athena (Montreal) Service is operating normally
Amazon Athena (N. Virginia) Service is operating normally
Amazon Athena (Ohio) Service is operating normally
Amazon Athena (Oregon) Service is operating normally
Amazon Chime Service is operating normally
Amazon Cloud Directory (Montreal) Service is operating normally
Amazon Cloud Directory (N. Virginia) Service is operating normally
Amazon Cloud Directory (Ohio) Service is operating normally
Amazon Cloud Directory (Oregon) Service is operating normally
Amazon CloudFront Service is operating normally
Amazon CloudSearch (N. California) Service is operating normally
Amazon CloudSearch (N. Virginia) Service is operating normally
Amazon CloudSearch (Oregon) Service is operating normally
Amazon CloudWatch (Montreal) Service is operating normally
Amazon CloudWatch (N. California) Service is operating normally
Amazon CloudWatch (N. Virginia) Service is operating normally
Amazon CloudWatch (Ohio) Service is operating normally
Amazon CloudWatch (Oregon) Service is operating normally
Amazon Cognito (Montreal) Service is operating normally
Amazon Cognito (N. Virginia) Service is operating normally
Amazon Cognito (Ohio) Service is operating normally
Amazon Cognito (Oregon) Service is operating normally
Amazon Comprehend (Montreal) Service is operating normally
Amazon Comprehend (N. Virginia) Service is operating normally
Amazon Comprehend (Ohio) Service is operating normally
Amazon Comprehend (Oregon) Service is operating normally
Amazon Comprehend Medical (N. Virginia) Service is operating normally
Amazon Comprehend Medical (Ohio) Service is operating normally
Amazon Comprehend Medical (Oregon) Service is operating normally
Amazon Connect (N. Virginia) Service is operating normally
Amazon Connect (Oregon) Service is operating normally
Amazon Data Lifecycle Manager (Montreal) Service is operating normally
Amazon Data Lifecycle Manager (N. California) Service is operating normally
Amazon Data Lifecycle Manager (N. Virginia) Service is operating normally
Amazon Data Lifecycle Manager (Ohio) Service is operating normally
Amazon Data Lifecycle Manager (Oregon) Service is operating normally
Amazon DocumentDB (N. Virginia) Service is operating normally
Amazon DocumentDB (Ohio) Service is operating normally
Amazon DocumentDB (Oregon) Service is operating normally
Amazon DynamoDB (Montreal) Service is operating normally
Amazon DynamoDB (N. California) Service is operating normally
Amazon DynamoDB (N. Virginia) Service is operating normally
Amazon DynamoDB (Ohio) Service is operating normally
Amazon DynamoDB (Oregon) Service is operating normally
Amazon DynamoDB Accelerator (DAX) (N. California) Service is operating normally
Amazon DynamoDB Accelerator (DAX) (N. Virginia) Service is operating normally
Amazon DynamoDB Accelerator (DAX) (Ohio) Service is operating normally
Amazon DynamoDB Accelerator (DAX) (Oregon) Service is operating normally
Amazon Elastic Compute Cloud (Montreal) Service is operating normally
Amazon Elastic Compute Cloud (N. California) Service is operating normally
Amazon Elastic Compute Cloud (N. Virginia) Service is operating normally
Amazon Elastic Compute Cloud (Ohio) Service is operating normally
Amazon Elastic Compute Cloud (Oregon) Service is operating normally
Amazon Elastic Container Registry (Montreal) Service is operating normally
Amazon Elastic Container Registry (N. California) Service is operating normally
Amazon Elastic Container Registry (N. Virginia) Service is operating normally
Amazon Elastic Container Registry (Ohio) Service is operating normally
Amazon Elastic Container Registry (Oregon) Service is operating normally
Amazon Elastic Container Service (Montreal) Service is operating normally
Amazon Elastic Container Service (N. California) Service is operating normally
Amazon Elastic Container Service (N. Virginia) Service is operating normally
Amazon Elastic Container Service (Ohio) Service is operating normally
Amazon Elastic Container Service (Oregon) Service is operating normally
Amazon Elastic Container Service for Kubernetes (N. Virginia) Service is operating normally
Amazon Elastic Container Service for Kubernetes (Oregon) Service is operating normally
Amazon Elastic File System (N. California) Service is operating normally
Amazon Elastic File System (N. Virginia) Service is operating normally
Amazon Elastic File System (Ohio) Service is operating normally
Amazon Elastic File System (Oregon) Service is operating normally
Amazon Elastic Load Balancing (Montreal) Service is operating normally
Amazon Elastic Load Balancing (N. California) Service is operating normally
Amazon Elastic Load Balancing (N. Virginia) Service is operating normally
Amazon Elastic Load Balancing (Ohio) Service is operating normally
Amazon Elastic Load Balancing (Oregon) Service is operating normally
Amazon Elastic MapReduce (Montreal) Service is operating normally
Amazon Elastic MapReduce (N. California) Service is operating normally
Amazon Elastic MapReduce (N. Virginia) Service is operating normally
Amazon Elastic MapReduce (Ohio) Service is operating normally
Amazon Elastic MapReduce (Oregon) Service is operating normally
Amazon Elastic Transcoder (N. California) Service is operating normally
Amazon Elastic Transcoder (N. Virginia) Service is operating normally
Amazon Elastic Transcoder (Oregon) Service is operating normally
Amazon ElastiCache (Montreal) Service is operating normally
Amazon ElastiCache (N. California) Service is operating normally
Amazon ElastiCache (N. Virginia) Service is operating normally
Amazon ElastiCache (Ohio) Service is operating normally
Amazon ElastiCache (Oregon) Service is operating normally
Amazon Elasticsearch Service (Montreal) Service is operating normally
Amazon Elasticsearch Service (N. California) Service is operating normally
Amazon Elasticsearch Service (N. Virginia) Service is operating normally
Amazon Elasticsearch Service (Ohio) Service is operating normally
Amazon Elasticsearch Service (Oregon) Service is operating normally
Amazon Forecast (N. Virginia) Service is operating normally
Amazon Forecast (Oregon) Service is operating normally
Amazon FreeRTOS (N. Virginia) Service is operating normally
Amazon FreeRTOS (Ohio) Service is operating normally
Amazon FreeRTOS (Oregon) Service is operating normally
Amazon FSx (N. Virginia) Service is operating normally
Amazon FSx (Ohio) Service is operating normally
Amazon FSx (Oregon) Service is operating normally
Amazon GameLift (Montreal) Service is operating normally
Amazon GameLift (N. California) Service is operating normally
Amazon GameLift (N. Virginia) Service is operating normally
Amazon GameLift (Ohio) Service is operating normally
Amazon GameLift (Oregon) Service is operating normally
Amazon Glacier (Montreal) Service is operating normally
Amazon Glacier (N. California) Service is operating normally
Amazon Glacier (N. Virginia) Service is operating normally
Amazon Glacier (Ohio) Service is operating normally
Amazon Glacier (Oregon) Service is operating normally
Amazon GuardDuty (Montreal) Service is operating normally
Amazon GuardDuty (N. California) Service is operating normally
Amazon GuardDuty (N. Virginia) Service is operating normally
Amazon GuardDuty (Ohio) Service is operating normally
Amazon GuardDuty (Oregon) Service is operating normally
Amazon Inspector (N. California) Service is operating normally
Amazon Inspector (N. Virginia) Service is operating normally
Amazon Inspector (Ohio) Service is operating normally
Amazon Inspector (Oregon) Service is operating normally
Amazon Inter-Region VPC Peering Service is operating normally
Amazon Kinesis Analytics (N. Virginia) Service is operating normally
Amazon Kinesis Analytics (Oregon) Service is operating normally
Amazon Kinesis Data Streams (Montreal) Service is operating normally
Amazon Kinesis Data Streams (N. California) Service is operating normally
Amazon Kinesis Data Streams (N. Virginia) Service is operating normally
Amazon Kinesis Data Streams (Ohio) Service is operating normally
Amazon Kinesis Data Streams (Oregon) Service is operating normally
Amazon Kinesis Firehose (Montreal) Service is operating normally
Amazon Kinesis Firehose (N. California) Service is operating normally
Amazon Kinesis Firehose (N. Virginia) Service is operating normally
Amazon Kinesis Firehose (Ohio) Service is operating normally
Amazon Kinesis Firehose (Oregon) Service is operating normally
Amazon Kinesis Video Streams (N. Virginia) Service is operating normally
Amazon Kinesis Video Streams (Oregon) Service is operating normally
Amazon Lex (N. Virginia) Service is operating normally
Amazon Lex (Oregon) Service is operating normally
Amazon Lightsail (Montreal) Service is operating normally
Amazon Lightsail (N. Virginia) Service is operating normally
Amazon Lightsail (Ohio) Service is operating normally
Amazon Lightsail (Oregon) Service is operating normally
Amazon Machine Learning (N. Virginia) Service is operating normally
Amazon Macie (N. Virginia) Service is operating normally
Amazon Macie (Oregon) Service is operating normally
Amazon MQ (N. California) Service is operating normally
Amazon MQ (N. Virginia) Service is operating normally
Amazon MQ (Ohio) Service is operating normally
Amazon MQ (Oregon) Service is operating normally
Amazon Neptune (N. Virginia) Service is operating normally
Amazon Neptune (Ohio) Service is operating normally
Amazon Neptune (Oregon) Service is operating normally
Amazon Pinpoint (N. Virginia) Service is operating normally
Amazon Polly (Montreal) Service is operating normally
Amazon Polly (N. California) Service is operating normally
Amazon Polly (N. Virginia) Service is operating normally
Amazon Polly (Ohio) Service is operating normally
Amazon Polly (Oregon) Service is operating normally
Amazon Redshift (Montreal) Service is operating normally
Amazon Redshift (N. California) Service is operating normally
Amazon Redshift (N. Virginia) Service is operating normally
Amazon Redshift (Ohio) Service is operating normally
Amazon Redshift (Oregon) Service is operating normally
Amazon Rekognition (N. Virginia) Service is operating normally
Amazon Rekognition (Ohio) Service is operating normally
Amazon Rekognition (Oregon) Service is operating normally
Amazon Relational Database Service (Montreal) Service is operating normally
Amazon Relational Database Service (N. California) Service is operating normally
Amazon Relational Database Service (N. Virginia) Service is operating normally
Amazon Relational Database Service (Ohio) Service is operating normally
Amazon Relational Database Service (Oregon) Service is operating normally
Amazon Route 53 Service is operating normally
Amazon Route 53 Domain Registration Service is operating normally
Amazon Route 53 Private DNS (Montreal) Service is operating normally
Amazon Route 53 Private DNS (N. California) Service is operating normally
Amazon Route 53 Private DNS (N. Virginia) Service is operating normally
Amazon Route 53 Private DNS (Ohio) Service is operating normally
Amazon Route 53 Private DNS (Oregon) Service is operating normally
Amazon Route 53 Resolver (N. Virginia) Service is operating normally
Amazon Route 53 Resolver (Ohio) Service is operating normally
Amazon Route 53 Resolver (Oregon) Service is operating normally
Amazon SageMaker (N. Virginia) Service is operating normally
Amazon SageMaker (Ohio) Service is operating normally
Amazon SageMaker (Oregon) Service is operating normally
Amazon Simple Email Service (N. Virginia) Service is operating normally
Amazon Simple Email Service (Oregon) Service is operating normally
Amazon Simple Notification Service (Montreal) Service is operating normally
Amazon Simple Notification Service (N. California) Service is operating normally
Amazon Simple Notification Service (N. Virginia) Service is operating normally
Amazon Simple Notification Service (Ohio) Service is operating normally
Amazon Simple Notification Service (Oregon) Service is operating normally
Amazon Simple Queue Service (Montreal) Service is operating normally
Amazon Simple Queue Service (N. California) Service is operating normally
Amazon Simple Queue Service (N. Virginia) Service is operating normally
Amazon Simple Queue Service (Ohio) Service is operating normally
Amazon Simple Queue Service (Oregon) Service is operating normally
Amazon Simple Storage Service (Montreal) Service is operating normally
Amazon Simple Storage Service (N. California) Service is operating normally
Amazon Simple Storage Service (N. Virginia) Service is operating normally
Amazon Simple Storage Service (Ohio) Service is operating normally
Amazon Simple Storage Service (Oregon) Service is operating normally
Amazon Simple Workflow Service (Montreal) Service is operating normally
Amazon Simple Workflow Service (N. California) Service is operating normally
Amazon Simple Workflow Service (N. Virginia) Service is operating normally
Amazon Simple Workflow Service (Ohio) Service is operating normally
Amazon Simple Workflow Service (Oregon) Service is operating normally
Amazon SimpleDB (N. California) Service is operating normally
Amazon SimpleDB (N. Virginia) Service is operating normally
Amazon SimpleDB (Oregon) Service is operating normally
Amazon Sumerian (N. Virginia) Service is operating normally
Amazon Sumerian (Ohio) Service is operating normally
Amazon Sumerian (Oregon) Service is operating normally
Amazon Transcribe (Montreal) Service is operating normally
Amazon Transcribe (N. Virginia) Service is operating normally
Amazon Transcribe (Ohio) Service is operating normally
Amazon Transcribe (Oregon) Service is operating normally
Amazon Translate (N. Virginia) Service is operating normally
Amazon Translate (Ohio) Service is operating normally
Amazon Translate (Oregon) Service is operating normally
Amazon Virtual Private Cloud (Montreal) Service is operating normally
Amazon Virtual Private Cloud (N. California) Service is operating normally
Amazon Virtual Private Cloud (N. Virginia) Service is operating normally
Amazon Virtual Private Cloud (Ohio) Service is operating normally
Amazon Virtual Private Cloud (Oregon) Service is operating normally
Amazon WorkDocs (N. Virginia) Service is operating normally
Amazon WorkDocs (Oregon) Service is operating normally
Amazon Worklink (N. Virginia) Service is operating normally
Amazon Worklink (Ohio) Service is operating normally
Amazon Worklink (Oregon) Service is operating normally
Amazon WorkMail (N. Virginia) Service is operating normally
Amazon WorkMail (Oregon) Service is operating normally
Amazon WorkSpaces (Montreal) Service is operating normally
Amazon WorkSpaces (N. Virginia) Service is operating normally
Amazon WorkSpaces (Oregon) Service is operating normally
Auto Scaling (Montreal) Service is operating normally
Auto Scaling (N. California) Service is operating normally
Auto Scaling (N. Virginia) Service is operating normally
Auto Scaling (Ohio) Service is operating normally
Auto Scaling (Oregon) Service is operating normally
AWS Application Discovery Service (Oregon) Service is operating normally
AWS AppSync (N. Virginia) Service is operating normally
AWS AppSync (Ohio) Service is operating normally
AWS AppSync (Oregon) Service is operating normally
AWS Backup (N. Virginia) Service is operating normally
AWS Backup (Ohio) Service is operating normally
AWS Backup (Oregon) Service is operating normally
AWS Batch (Montreal) Service is operating normally
AWS Batch (N. California) Service is operating normally
AWS Batch (N. Virginia) Service is operating normally
AWS Batch (Ohio) Service is operating normally
AWS Batch (Oregon) Service is operating normally
AWS Billing Console Service is operating normally
AWS Certificate Manager (Montreal) Service is operating normally
AWS Certificate Manager (N. California) Service is operating normally
AWS Certificate Manager (N. Virginia) Service is operating normally
AWS Certificate Manager (Ohio) Service is operating normally
AWS Certificate Manager (Oregon) Service is operating normally
AWS Client VPN (N. Virginia) Service is operating normally
AWS Client VPN (Ohio) Service is operating normally
AWS Client VPN (Oregon) Service is operating normally
AWS Cloud Map (Montreal) Service is operating normally
AWS Cloud Map (N. California) Service is operating normally
AWS Cloud Map (N. Virginia) Service is operating normally
AWS Cloud Map (Ohio) Service is operating normally
AWS Cloud Map (Oregon) Service is operating normally
AWS Cloud9 (N. Virginia) Service is operating normally
AWS Cloud9 (Ohio) Service is operating normally
AWS Cloud9 (Oregon) Service is operating normally
AWS CloudFormation (Montreal) Service is operating normally
AWS CloudFormation (N. California) Service is operating normally
AWS CloudFormation (N. Virginia) Service is operating normally
AWS CloudFormation (Ohio) Service is operating normally
AWS CloudFormation (Oregon) Service is operating normally
AWS CloudHSM (Montreal) Service is operating normally
AWS CloudHSM (N. California) Service is operating normally
AWS CloudHSM (N. Virginia) Service is operating normally
AWS CloudHSM (Ohio) Service is operating normally
AWS CloudHSM (Oregon) Service is operating normally
AWS CloudTrail (Montreal) Service is operating normally
AWS CloudTrail (N. California) Service is operating normally
AWS CloudTrail (N. Virginia) Service is operating normally
AWS CloudTrail (Ohio) Service is operating normally
AWS CloudTrail (Oregon) Service is operating normally
AWS CodeBuild (Montreal) Service is operating normally
AWS CodeBuild (N. California) Service is operating normally
AWS CodeBuild (N. Virginia) Service is operating normally
AWS CodeBuild (Ohio) Service is operating normally
AWS CodeBuild (Oregon) Service is operating normally
AWS CodeCommit (Montreal) Service is operating normally
AWS CodeCommit (N. California) Service is operating normally
AWS CodeCommit (N. Virginia) Service is operating normally
AWS CodeCommit (Ohio) Service is operating normally
AWS CodeCommit (Oregon) Service is operating normally
AWS CodeDeploy (Montreal) Service is operating normally
AWS CodeDeploy (N. California) Service is operating normally
AWS CodeDeploy (N. Virginia) Service is operating normally
AWS CodeDeploy (Ohio) Service is operating normally
AWS CodeDeploy (Oregon) Service is operating normally
AWS CodePipeline (Montreal) Service is operating normally
AWS CodePipeline (N. California) Service is operating normally
AWS CodePipeline (N. Virginia) Service is operating normally
AWS CodePipeline (Ohio) Service is operating normally
AWS CodePipeline (Oregon) Service is operating normally
AWS CodeStar (Montreal) Service is operating normally
AWS CodeStar (N. California) Service is operating normally
AWS CodeStar (N. Virginia) Service is operating normally
AWS CodeStar (Ohio) Service is operating normally
AWS CodeStar (Oregon) Service is operating normally
AWS Config (Montreal) Service is operating normally
AWS Config (N. California) Service is operating normally
AWS Config (N. Virginia) Service is operating normally
AWS Config (Ohio) Service is operating normally
AWS Config (Oregon) Service is operating normally
AWS Control Tower (N. Virginia) Service is operating normally
AWS Control Tower (Ohio) Service is operating normally
AWS Control Tower (Oregon) Service is operating normally
AWS Data Pipeline (N. Virginia) Service is operating normally
AWS Data Pipeline (Oregon) Service is operating normally
AWS Database Migration Service (Montreal) Service is operating normally
AWS Database Migration Service (N. California) Service is operating normally
AWS Database Migration Service (N. Virginia) Service is operating normally
AWS Database Migration Service (Ohio) Service is operating normally
AWS Database Migration Service (Oregon) Service is operating normally
AWS DataSync (N. California) Service is operating normally
AWS DataSync (N. Virginia) Service is operating normally
AWS DataSync (Ohio) Service is operating normally
AWS DataSync (Oregon) Service is operating normally
AWS DeepLens (N. Virginia) Service is operating normally
AWS Device Farm (Oregon) Service is operating normally
AWS Direct Connect (Montreal) Service is operating normally
AWS Direct Connect (N. California) Service is operating normally
AWS Direct Connect (N. Virginia) Service is operating normally
AWS Direct Connect (Ohio) Service is operating normally
AWS Direct Connect (Oregon) Service is operating normally
AWS Directory Service (Montreal) Service is operating normally
AWS Directory Service (N. California) Service is operating normally
AWS Directory Service (N. Virginia) Service is operating normally
AWS Directory Service (Ohio) Service is operating normally
AWS Directory Service (Oregon) Service is operating normally
AWS Elastic Beanstalk (Montreal) Service is operating normally
AWS Elastic Beanstalk (N. California) Service is operating normally
AWS Elastic Beanstalk (N. Virginia) Service is operating normally
AWS Elastic Beanstalk (Ohio) Service is operating normally
AWS Elastic Beanstalk (Oregon) Service is operating normally
AWS Elemental MediaConnect (N. California) Service is operating normally
AWS Elemental MediaConnect (N. Virginia) Service is operating normally
AWS Elemental MediaConnect (Oregon) Service is operating normally
AWS Elemental MediaConvert (Montreal) Service is operating normally
AWS Elemental MediaConvert (N. California) Service is operating normally
AWS Elemental MediaConvert (N. Virginia) Service is operating normally
AWS Elemental MediaConvert (Ohio) Service is operating normally
AWS Elemental MediaConvert (Oregon) Service is operating normally
AWS Elemental MediaLive (N. Virginia) Service is operating normally
AWS Elemental MediaLive (Oregon) Service is operating normally
AWS Elemental MediaPackage (N. Virginia) Service is operating normally
AWS Elemental MediaPackage (Oregon) Service is operating normally
AWS Elemental MediaStore (N. Virginia) Service is operating normally
AWS Elemental MediaStore (Oregon) Service is operating normally
AWS Elemental MediaTailor (N. Virginia) Service is operating normally
AWS Elemental MediaTailor (Oregon) Service is operating normally
AWS Firewall Manager (N. California) Service is operating normally
AWS Firewall Manager (N. Virginia) Service is operating normally
AWS Firewall Manager (Ohio) Service is operating normally
AWS Global Accelerator Service is operating normally
AWS Glue (Montreal) Service is operating normally
AWS Glue (N. California) Service is operating normally
AWS Glue (N. Virginia) Service is operating normally
AWS Glue (Ohio) Service is operating normally
AWS Glue (Oregon) Service is operating normally
AWS Greengrass (N. Virginia) Service is operating normally
AWS Greengrass (Oregon) Service is operating normally
AWS Identity and Access Management Service is operating normally
AWS Import/Export Service is operating normally
AWS Internet Connectivity (Montreal) Service is operating normally
AWS Internet Connectivity (N. California) Service is operating normally
AWS Internet Connectivity (N. Virginia) Service is operating normally
AWS Internet Connectivity (Ohio) Service is operating normally
AWS Internet Connectivity (Oregon) Service is operating normally
AWS IoT (N. Virginia) Service is operating normally
AWS IoT (Ohio) Service is operating normally
AWS IoT (Oregon) Service is operating normally
AWS IoT 1-Click (N. Virginia) Service is operating normally
AWS IoT 1-Click (Ohio) Service is operating normally
AWS IoT 1-Click (Oregon) Service is operating normally
AWS IoT Analytics (N. Virginia) Service is operating normally
AWS IoT Analytics (Ohio) Service is operating normally
AWS IoT Analytics (Oregon) Service is operating normally
AWS IoT Device Defender (N. Virginia) Service is operating normally
AWS IoT Device Defender (Ohio) Service is operating normally
AWS IoT Device Defender (Oregon) Service is operating normally
AWS IoT Device Management Service is operating normally
AWS Key Management Service (Montreal) Service is operating normally
AWS Key Management Service (N. California) Service is operating normally
AWS Key Management Service (N. Virginia) Service is operating normally
AWS Key Management Service (Ohio) Service is operating normally
AWS Key Management Service (Oregon) Service is operating normally
AWS Lambda (Montreal) Service is operating normally
AWS Lambda (N. California) Service is operating normally
AWS Lambda (N. Virginia) Service is operating normally
AWS Lambda (Ohio) Service is operating normally
AWS Lambda (Oregon) Service is operating normally
AWS License Manager (N. Virginia) Service is operating normally
AWS License Manager (Ohio) Service is operating normally
AWS License Manager (Oregon) Service is operating normally
AWS Management Console Service is operating normally
AWS Marketplace Service is operating normally
AWS Migration Hub (Oregon) Service is operating normally
AWS Mobile Hub (N. Virginia) Service is operating normally
AWS NAT Gateway (Montreal) Service is operating normally
AWS NAT Gateway (N. California) Service is operating normally
AWS NAT Gateway (N. Virginia) Service is operating normally
AWS NAT Gateway (Ohio) Service is operating normally
AWS NAT Gateway (Oregon) Service is operating normally
AWS OpsWorks for Chef Automate (N. California) Service is operating normally
AWS OpsWorks for Chef Automate (N. Virginia) Service is operating normally
AWS OpsWorks for Chef Automate (Ohio) Service is operating normally
AWS OpsWorks for Chef Automate (Oregon) Service is operating normally
AWS OpsWorks for Puppet Enterprise (N. California) Service is operating normally
AWS OpsWorks for Puppet Enterprise (N. Virginia) Service is operating normally
AWS OpsWorks for Puppet Enterprise (Ohio) Service is operating normally
AWS OpsWorks for Puppet Enterprise (Oregon) Service is operating normally
AWS OpsWorks Stacks (N. California) Service is operating normally
AWS OpsWorks Stacks (N. Virginia) Service is operating normally
AWS OpsWorks Stacks (Ohio) Service is operating normally
AWS OpsWorks Stacks (Oregon) Service is operating normally
AWS Organizations Service is operating normally
AWS QuickSight (N. Virginia) Service is operating normally
AWS QuickSight (Ohio) Service is operating normally
AWS QuickSight (Oregon) Service is operating normally
AWS Resource Access Manager (Montreal) Service is operating normally
AWS Resource Access Manager (N. California) Service is operating normally
AWS Resource Access Manager (N. Virginia) Service is operating normally
AWS Resource Access Manager (Ohio) Service is operating normally
AWS Resource Access Manager (Oregon) Service is operating normally
AWS Resource Groups Service is operating normally
AWS Resource Groups Tagging API (Montreal) Service is operating normally
AWS Resource Groups Tagging API (N. California) Service is operating normally
AWS Resource Groups Tagging API (N. Virginia) Service is operating normally
AWS Resource Groups Tagging API (Ohio) Service is operating normally
AWS Resource Groups Tagging API (Oregon) Service is operating normally
AWS RoboMaker (N. Virginia) Service is operating normally
AWS RoboMaker (Oregon) Service is operating normally
AWS Secrets Manager (Montreal) Service is operating normally
AWS Secrets Manager (N. California) Service is operating normally
AWS Secrets Manager (N. Virginia) Service is operating normally
AWS Secrets Manager (Ohio) Service is operating normally
AWS Secrets Manager (Oregon) Service is operating normally
AWS Security Hub (Montreal) Service is operating normally
AWS Security Hub (N. California) Service is operating normally
AWS Security Hub (N. Virginia) Service is operating normally
AWS Security Hub (Ohio) Service is operating normally
AWS Security Hub (Oregon) Service is operating normally
AWS Serverless Application Repository (Montreal) Service is operating normally
AWS Serverless Application Repository (N. California) Service is operating normally
AWS Serverless Application Repository (N. Virginia) Service is operating normally
AWS Serverless Application Repository (Ohio) Service is operating normally
AWS Serverless Application Repository (Oregon) Service is operating normally
AWS Service Catalog (Montreal) Service is operating normally
AWS Service Catalog (N. Virginia) Service is operating normally
AWS Service Catalog (Ohio) Service is operating normally
AWS Service Catalog (Oregon) Service is operating normally
AWS Single Sign-On (N. Virginia) Service is operating normally
AWS Step Functions (Montreal) Service is operating normally
AWS Step Functions (N. California) Service is operating normally
AWS Step Functions (N. Virginia) Service is operating normally
AWS Step Functions (Ohio) Service is operating normally
AWS Step Functions (Oregon) Service is operating normally
AWS Storage Gateway (Montreal) Service is operating normally
AWS Storage Gateway (N. California) Service is operating normally
AWS Storage Gateway (N. Virginia) Service is operating normally
AWS Storage Gateway (Ohio) Service is operating normally
AWS Storage Gateway (Oregon) Service is operating normally
AWS Systems Manager (Montreal) Service is operating normally
AWS Systems Manager (N. California) Service is operating normally
AWS Systems Manager (N. Virginia) Service is operating normally
AWS Systems Manager (Ohio) Service is operating normally
AWS Systems Manager (Oregon) Service is operating normally
AWS Transfer for SFTP (Montreal) Service is operating normally
AWS Transfer for SFTP (N. California) Service is operating normally
AWS Transfer for SFTP (N. Virginia) Service is operating normally
AWS Transfer for SFTP (Ohio) Service is operating normally
AWS Transfer for SFTP (Oregon) Service is operating normally
AWS Transit Gateway (Montreal) Service is operating normally
AWS Transit Gateway (N. California) Service is operating normally
AWS Transit Gateway (N. Virginia) Service is operating normally
AWS Transit Gateway (Ohio) Service is operating normally
AWS Transit Gateway (Oregon) Service is operating normally
AWS VPCE PrivateLink (Montreal) Service is operating normally
AWS VPCE PrivateLink (N. California) Service is operating normally
AWS VPCE PrivateLink (N. Virginia) Service is operating normally
AWS VPCE PrivateLink (Ohio) Service is operating normally
AWS VPCE PrivateLink (Oregon) Service is operating normally
AWS WAF Service is operating normally
AWS X-Ray (Montreal) Service is operating normally
AWS X-Ray (N. California) Service is operating normally
AWS X-Ray (N. Virginia) Service is operating normally
AWS X-Ray (Ohio) Service is operating normally
AWS X-Ray (Oregon) Service is operating normally
Recent Events Details RSS
No recent events.
Remaining Services Details RSS
Amazon API Gateway (Sao Paulo) Service is operating normally
Amazon Chime Service is operating normally
Amazon CloudFront Service is operating normally
Amazon CloudSearch (Sao Paulo) Service is operating normally
Amazon CloudWatch (Sao Paulo) Service is operating normally
Amazon Data Lifecycle Manager (Sao Paulo) Service is operating normally
Amazon DynamoDB (Sao Paulo) Service is operating normally
Amazon Elastic Compute Cloud (Sao Paulo) Service is operating normally
Amazon Elastic Container Registry (Sao Paulo) Service is operating normally
Amazon Elastic Container Service (Sao Paulo) Service is operating normally
Amazon Elastic Load Balancing (Sao Paulo) Service is operating normally
Amazon Elastic MapReduce (Sao Paulo) Service is operating normally
Amazon ElastiCache (Sao Paulo) Service is operating normally
Amazon Elasticsearch Service (Sao Paulo) Service is operating normally
Amazon GameLift (Sao Paulo) Service is operating normally
Amazon GuardDuty (Sao Paulo) Service is operating normally
Amazon Inter-Region VPC Peering Service is operating normally
Amazon Kinesis Data Streams (Sao Paulo) Service is operating normally
Amazon Kinesis Firehose (Sao Paulo) Service is operating normally
Amazon Polly (Sao Paulo) Service is operating normally
Amazon Redshift (Sao Paulo) Service is operating normally
Amazon Relational Database Service (Sao Paulo) Service is operating normally
Amazon Route 53 Service is operating normally
Amazon Route 53 Domain Registration Service is operating normally
Amazon Route 53 Private DNS (Sao Paulo) Service is operating normally
Amazon Simple Notification Service (Sao Paulo) Service is operating normally
Amazon Simple Queue Service (Sao Paulo) Service is operating normally
Amazon Simple Storage Service (Sao Paulo) Service is operating normally
Amazon Simple Workflow Service (Sao Paulo) Service is operating normally
Amazon SimpleDB (Sao Paulo) Service is operating normally
Amazon Transcribe (Sao Paulo) Service is operating normally
Amazon Virtual Private Cloud (Sao Paulo) Service is operating normally
Amazon WorkSpaces (Sao Paulo) Service is operating normally
Auto Scaling (Sao Paulo) Service is operating normally
AWS Batch (Sao Paulo) Service is operating normally
AWS Billing Console Service is operating normally
AWS Certificate Manager (Sao Paulo) Service is operating normally
AWS CloudFormation (Sao Paulo) Service is operating normally
AWS CloudTrail (Sao Paulo) Service is operating normally
AWS CodeBuild (Sao Paulo) Service is operating normally
AWS CodeCommit (Sao Paulo) Service is operating normally
AWS CodeDeploy (Sao Paulo) Service is operating normally
AWS CodePipeline (Sao Paulo) Service is operating normally
AWS Config (Sao Paulo) Service is operating normally
AWS Database Migration Service (Sao Paulo) Service is operating normally
AWS Direct Connect (Sao Paulo) Service is operating normally
AWS Directory Service (Sao Paulo) Service is operating normally
AWS Elastic Beanstalk (Sao Paulo) Service is operating normally
AWS Elemental MediaConvert (Sao Paulo) Service is operating normally
AWS Elemental MediaLive (Sao Paulo) Service is operating normally
AWS Global Accelerator Service is operating normally
AWS Identity and Access Management Service is operating normally
AWS Internet Connectivity (Sao Paulo) Service is operating normally
AWS IoT Device Management Service is operating normally
AWS Key Management Service (Sao Paulo) Service is operating normally
AWS Lambda (Sao Paulo) Service is operating normally
AWS Management Console Service is operating normally
AWS Marketplace Service is operating normally
AWS NAT Gateway (Sao Paulo) Service is operating normally
AWS OpsWorks Stacks (Sao Paulo) Service is operating normally
AWS Organizations Service is operating normally
AWS Resource Groups Service is operating normally
AWS Resource Groups Tagging API (Sao Paulo) Service is operating normally
AWS Secrets Manager (Sao Paulo) Service is operating normally
AWS Security Hub (Sao Paulo) Service is operating normally
AWS Serverless Application Repository (Sao Paulo) Service is operating normally
AWS Step Functions (Sao Paulo) Service is operating normally
AWS Storage Gateway (Sao Paulo) Service is operating normally
AWS Systems Manager (Sao Paulo) Service is operating normally
AWS VPCE PrivateLink (Sao Paulo) Service is operating normally
AWS WAF Service is operating normally
AWS X-Ray (Sao Paulo) Service is operating normally
Recent Events Details RSS
No recent events.
Remaining Services Details RSS
Amazon API Gateway (Frankfurt) Service is operating normally
Amazon API Gateway (Ireland) Service is operating normally
Amazon API Gateway (London) Service is operating normally
Amazon API Gateway (Paris) Service is operating normally
Amazon API Gateway (Stockholm) Service is operating normally
Amazon AppStream 2.0 (Frankfurt) Service is operating normally
Amazon AppStream 2.0 (Ireland) Service is operating normally
Amazon Athena (Frankfurt) Service is operating normally
Amazon Athena (Ireland) Service is operating normally
Amazon Athena (London) Service is operating normally
Amazon Chime Service is operating normally
Amazon Cloud Directory (Frankfurt) Service is operating normally
Amazon Cloud Directory (Ireland) Service is operating normally
Amazon Cloud Directory (London) Service is operating normally
Amazon CloudFront Service is operating normally
Amazon CloudSearch (Frankfurt) Service is operating normally
Amazon CloudSearch (Ireland) Service is operating normally
Amazon CloudWatch (Frankfurt) Service is operating normally
Amazon CloudWatch (Ireland) Service is operating normally
Amazon CloudWatch (London) Service is operating normally
Amazon CloudWatch (Paris) Service is operating normally
Amazon CloudWatch (Stockholm) Service is operating normally
Amazon Cognito (Frankfurt) Service is operating normally
Amazon Cognito (Ireland) Service is operating normally
Amazon Cognito (London) Service is operating normally
Amazon Comprehend (Frankfurt) Service is operating normally
Amazon Comprehend (Ireland) Service is operating normally
Amazon Comprehend (London) Service is operating normally
Amazon Comprehend Medical (Ireland) Service is operating normally
Amazon Connect (Frankfurt) Service is operating normally
Amazon Data Lifecycle Manager (Frankfurt) Service is operating normally
Amazon Data Lifecycle Manager (Ireland) Service is operating normally
Amazon Data Lifecycle Manager (London) Service is operating normally
Amazon Data Lifecycle Manager (Paris) Service is operating normally
Amazon DocumentDB (Ireland) Service is operating normally
Amazon DynamoDB (Frankfurt) Service is operating normally
Amazon DynamoDB (Ireland) Service is operating normally
Amazon DynamoDB (London) Service is operating normally
Amazon DynamoDB (Paris) Service is operating normally
Amazon DynamoDB (Stockholm) Service is operating normally
Amazon DynamoDB Accelerator (DAX) (Ireland) Service is operating normally
Amazon Elastic Compute Cloud (Frankfurt) Service is operating normally
Amazon Elastic Compute Cloud (Ireland) Service is operating normally
Amazon Elastic Compute Cloud (London) Service is operating normally
Amazon Elastic Compute Cloud (Paris) Service is operating normally
Amazon Elastic Compute Cloud (Stockholm) Service is operating normally
Amazon Elastic Container Registry (Frankfurt) Service is operating normally
Amazon Elastic Container Registry (Ireland) Service is operating normally
Amazon Elastic Container Registry (London) Service is operating normally
Amazon Elastic Container Registry (Stockholm) Service is operating normally
Amazon Elastic Container Service (Frankfurt) Service is operating normally
Amazon Elastic Container Service (Ireland) Service is operating normally
Amazon Elastic Container Service (London) Service is operating normally
Amazon Elastic Container Service (Stockholm) Service is operating normally
Amazon Elastic Container Service for Kubernetes (London) Service is operating normally
Amazon Elastic Container Service for Kubernetes (Paris) Service is operating normally
Amazon Elastic Container Service for Kubernetes (Stockholm) Service is operating normally
Amazon Elastic File System (Frankfurt) Service is operating normally
Amazon Elastic File System (Ireland) Service is operating normally
Amazon Elastic File System (London) Service is operating normally
Amazon Elastic Load Balancing (Frankfurt) Service is operating normally
Amazon Elastic Load Balancing (Ireland) Service is operating normally
Amazon Elastic Load Balancing (London) Service is operating normally
Amazon Elastic Load Balancing (Paris) Service is operating normally
Amazon Elastic Load Balancing (Stockholm) Service is operating normally
Amazon Elastic MapReduce (Frankfurt) Service is operating normally
Amazon Elastic MapReduce (Ireland) Service is operating normally
Amazon Elastic MapReduce (London) Service is operating normally
Amazon Elastic MapReduce (Paris) Service is operating normally
Amazon Elastic MapReduce (Stockholm) Service is operating normally
Amazon Elastic Transcoder (Ireland) Service is operating normally
Amazon ElastiCache (Frankfurt) Service is operating normally
Amazon ElastiCache (Ireland) Service is operating normally
Amazon ElastiCache (London) Service is operating normally
Amazon ElastiCache (Paris) Service is operating normally
Amazon ElastiCache (Stockholm) Service is operating normally
Amazon Elasticsearch Service (Frankfurt) Service is operating normally
Amazon Elasticsearch Service (Ireland) Service is operating normally
Amazon Elasticsearch Service (London) Service is operating normally
Amazon Elasticsearch Service (Paris) Service is operating normally
Amazon Elasticsearch Service (Stockholm) Service is operating normally
Amazon FreeRTOS (Frankfurt) Service is operating normally
Amazon FreeRTOS (Ireland) Service is operating normally
Amazon FreeRTOS (London) Service is operating normally
Amazon FSx (Ireland) Service is operating normally
Amazon GameLift (Frankfurt) Service is operating normally
Amazon GameLift (Ireland) Service is operating normally
Amazon GameLift (London) Service is operating normally
Amazon Glacier (Frankfurt) Service is operating normally
Amazon Glacier (Ireland) Service is operating normally
Amazon Glacier (London) Service is operating normally
Amazon Glacier (Paris) Service is operating normally
Amazon Glacier (Stockholm) Service is operating normally
Amazon GuardDuty (Frankfurt) Service is operating normally
Amazon GuardDuty (Ireland) Service is operating normally
Amazon GuardDuty (London) Service is operating normally
Amazon Inspector (Frankfurt) Service is operating normally
Amazon Inspector (Ireland) Service is operating normally
Amazon Inter-Region VPC Peering Service is operating normally
Amazon Kinesis Analytics (Ireland) Service is operating normally
Amazon Kinesis Data Streams (Frankfurt) Service is operating normally
Amazon Kinesis Data Streams (Ireland) Service is operating normally
Amazon Kinesis Data Streams (London) Service is operating normally
Amazon Kinesis Data Streams (Paris) Service is operating normally
Amazon Kinesis Data Streams (Stockholm) Service is operating normally
Amazon Kinesis Firehose (Frankfurt) Service is operating normally
Amazon Kinesis Firehose (Ireland) Service is operating normally
Amazon Kinesis Firehose (London) Service is operating normally
Amazon Kinesis Firehose (Paris) Service is operating normally
Amazon Kinesis Video Streams (Frankfurt) Service is operating normally
Amazon Kinesis Video Streams (Ireland) Service is operating normally
Amazon Lex (Ireland) Service is operating normally
Amazon Lightsail (Frankfurt) Service is operating normally
Amazon Lightsail (Ireland) Service is operating normally
Amazon Lightsail (London) Service is operating normally
Amazon Lightsail (Paris) Service is operating normally
Amazon Machine Learning (Ireland) Service is operating normally
Amazon MQ (Frankfurt) Service is operating normally
Amazon MQ (Ireland) Service is operating normally
Amazon MQ (London) Service is operating normally
Amazon Neptune (Ireland) Service is operating normally
Amazon Neptune (London) Service is operating normally
Amazon Polly (Frankfurt) Service is operating normally
Amazon Polly (Ireland) Service is operating normally
Amazon Polly (London) Service is operating normally
Amazon Polly (Paris) Service is operating normally
Amazon Redshift (Frankfurt) Service is operating normally
Amazon Redshift (Ireland) Service is operating normally
Amazon Redshift (London) Service is operating normally
Amazon Redshift (Paris) Service is operating normally
Amazon Redshift (Stockholm) Service is operating normally
Amazon Rekognition (Ireland) Service is operating normally
Amazon Relational Database Service (Frankfurt) Service is operating normally
Amazon Relational Database Service (Ireland) Service is operating normally
Amazon Relational Database Service (London) Service is operating normally
Amazon Relational Database Service (Paris) Service is operating normally
Amazon Relational Database Service (Stockholm) Service is operating normally
Amazon Route 53 Service is operating normally
Amazon Route 53 Domain Registration Service is operating normally
Amazon Route 53 Private DNS (Frankfurt) Service is operating normally
Amazon Route 53 Private DNS (Ireland) Service is operating normally
Amazon Route 53 Private DNS (London) Service is operating normally
Amazon Route 53 Private DNS (Paris) Service is operating normally
Amazon Route 53 Private DNS (Stockholm) Service is operating normally
Amazon Route 53 Resolver (Ireland) Service is operating normally
Amazon SageMaker (Frankfurt) Service is operating normally
Amazon SageMaker (Ireland) Service is operating normally
Amazon Simple Email Service (Ireland) Service is operating normally
Amazon Simple Notification Service (Frankfurt) Service is operating normally
Amazon Simple Notification Service (Ireland) Service is operating normally
Amazon Simple Notification Service (London) Service is operating normally
Amazon Simple Notification Service (Paris) Service is operating normally
Amazon Simple Notification Service (Stockholm) Service is operating normally
Amazon Simple Queue Service (Frankfurt) Service is operating normally
Amazon Simple Queue Service (Ireland) Service is operating normally
Amazon Simple Queue Service (London) Service is operating normally
Amazon Simple Queue Service (Paris) Service is operating normally
Amazon Simple Queue Service (Stockholm) Service is operating normally
Amazon Simple Storage Service (Frankfurt) Service is operating normally
Amazon Simple Storage Service (Ireland) Service is operating normally
Amazon Simple Storage Service (London) Service is operating normally
Amazon Simple Storage Service (Paris) Service is operating normally
Amazon Simple Storage Service (Stockholm) Service is operating normally
Amazon Simple Workflow Service (Frankfurt) Service is operating normally
Amazon Simple Workflow Service (Ireland) Service is operating normally
Amazon Simple Workflow Service (London) Service is operating normally
Amazon Simple Workflow Service (Paris) Service is operating normally
Amazon Simple Workflow Service (Stockholm) Service is operating normally
Amazon SimpleDB (Ireland) Service is operating normally
Amazon Sumerian (Ireland) Service is operating normally
Amazon Sumerian (London) Service is operating normally
Amazon Transcribe (Ireland) Service is operating normally
Amazon Transcribe (London) Service is operating normally
Amazon Transcribe (Paris) Service is operating normally
Amazon Translate (Ireland) Service is operating normally
Amazon Virtual Private Cloud (Frankfurt) Service is operating normally
Amazon Virtual Private Cloud (Ireland) Service is operating normally
Amazon Virtual Private Cloud (London) Service is operating normally
Amazon Virtual Private Cloud (Paris) Service is operating normally
Amazon Virtual Private Cloud (Stockholm) Service is operating normally
Amazon WorkDocs (Ireland) Service is operating normally
Amazon Worklink (Ireland) Service is operating normally
Amazon WorkMail (Ireland) Service is operating normally
Amazon WorkSpaces (Frankfurt) Service is operating normally
Amazon WorkSpaces (Ireland) Service is operating normally
Amazon WorkSpaces (London) Service is operating normally
Auto Scaling (Frankfurt) Service is operating normally
Auto Scaling (Ireland) Service is operating normally
Auto Scaling (London) Service is operating normally
Auto Scaling (Paris) Service is operating normally
Auto Scaling (Stockholm) Service is operating normally
AWS AppSync (Frankfurt) Service is operating normally
AWS AppSync (Ireland) Service is operating normally
AWS AppSync (London) Service is operating normally
AWS Backup (Ireland) Service is operating normally
AWS Batch (Frankfurt) Service is operating normally
AWS Batch (Ireland) Service is operating normally
AWS Batch (London) Service is operating normally
AWS Batch (Paris) Service is operating normally
AWS Batch (Stockholm) Service is operating normally
AWS Billing Console Service is operating normally
AWS Certificate Manager (Frankfurt) Service is operating normally
AWS Certificate Manager (Ireland) Service is operating normally
AWS Certificate Manager (London) Service is operating normally
AWS Certificate Manager (Paris) Service is operating normally
AWS Certificate Manager (Stockholm) Service is operating normally
AWS Client VPN (Ireland) Service is operating normally
AWS Cloud Map (Frankfurt) Service is operating normally
AWS Cloud Map (Ireland) Service is operating normally
AWS Cloud Map (London) Service is operating normally
AWS Cloud Map (Paris) Service is operating normally
AWS Cloud9 (Ireland) Service is operating normally
AWS CloudFormation (Frankfurt) Service is operating normally
AWS CloudFormation (Ireland) Service is operating normally
AWS CloudFormation (London) Service is operating normally
AWS CloudFormation (Paris) Service is operating normally
AWS CloudFormation (Stockholm) Service is operating normally
AWS CloudHSM (Frankfurt) Service is operating normally
AWS CloudHSM (Ireland) Service is operating normally
AWS CloudTrail (Frankfurt) Service is operating normally
AWS CloudTrail (Ireland) Service is operating normally
AWS CloudTrail (London) Service is operating normally
AWS CloudTrail (Paris) Service is operating normally
AWS CloudTrail (Stockholm) Service is operating normally
AWS CodeBuild (Frankfurt) Service is operating normally
AWS CodeBuild (Ireland) Service is operating normally
AWS CodeBuild (London) Service is operating normally
AWS CodeBuild (Paris) Service is operating normally
AWS CodeCommit (Frankfurt) Service is operating normally
AWS CodeCommit (Ireland) Service is operating normally
AWS CodeCommit (London) Service is operating normally
AWS CodeDeploy (Frankfurt) Service is operating normally
AWS CodeDeploy (Ireland) Service is operating normally
AWS CodeDeploy (London) Service is operating normally
AWS CodeDeploy (Paris) Service is operating normally
AWS CodeDeploy (Stockholm) Service is operating normally
AWS CodePipeline (Frankfurt) Service is operating normally
AWS CodePipeline (Ireland) Service is operating normally
AWS CodePipeline (London) Service is operating normally
AWS CodeStar (Frankfurt) Service is operating normally
AWS CodeStar (Ireland) Service is operating normally
AWS CodeStar (London) Service is operating normally
AWS Config (Frankfurt) Service is operating normally
AWS Config (Ireland) Service is operating normally
AWS Config (London) Service is operating normally
AWS Config (Paris) Service is operating normally
AWS Config (Stockholm) Service is operating normally
AWS Control Tower (Ireland) Service is operating normally
AWS Data Pipeline (Ireland) Service is operating normally
AWS Database Migration Service (Frankfurt) Service is operating normally
AWS Database Migration Service (Ireland) Service is operating normally
AWS Database Migration Service (London) Service is operating normally
AWS Database Migration Service (Paris) Service is operating normally
AWS Database Migration Service (Stockholm) Service is operating normally
AWS DataSync (Frankfurt) Service is operating normally
AWS DataSync (Ireland) Service is operating normally
AWS Direct Connect (Frankfurt) Service is operating normally
AWS Direct Connect (Ireland) Service is operating normally
AWS Direct Connect (London) Service is operating normally
AWS Direct Connect (Paris) Service is operating normally
AWS Direct Connect (Stockholm) Service is operating normally
AWS Directory Service (Frankfurt) Service is operating normally
AWS Directory Service (Ireland) Service is operating normally
AWS Directory Service (London) Service is operating normally
AWS Elastic Beanstalk (Frankfurt) Service is operating normally
AWS Elastic Beanstalk (Ireland) Service is operating normally
AWS Elastic Beanstalk (London) Service is operating normally
AWS Elastic Beanstalk (Paris) Service is operating normally
AWS Elastic Beanstalk (Stockholm) Service is operating normally
AWS Elemental MediaConnect (Frankfurt) Service is operating normally
AWS Elemental MediaConnect (Ireland) Service is operating normally
AWS Elemental MediaConvert (Frankfurt) Service is operating normally
AWS Elemental MediaConvert (Ireland) Service is operating normally
AWS Elemental MediaConvert (London) Service is operating normally
AWS Elemental MediaLive (Frankfurt) Service is operating normally
AWS Elemental MediaLive (Ireland) Service is operating normally
AWS Elemental MediaPackage (Ireland) Service is operating normally
AWS Elemental MediaStore (Frankfurt) Service is operating normally
AWS Elemental MediaStore (Ireland) Service is operating normally
AWS Elemental MediaTailor (Ireland) Service is operating normally
AWS Firewall Manager (Frankfurt) Service is operating normally
AWS Firewall Manager (Ireland) Service is operating normally
AWS Global Accelerator Service is operating normally
AWS Glue (Frankfurt) Service is operating normally
AWS Glue (Ireland) Service is operating normally
AWS Glue (London) Service is operating normally
AWS Glue (Paris) Service is operating normally
AWS Greengrass (Frankfurt) Service is operating normally
AWS Greengrass (Ireland) Service is operating normally
AWS Identity and Access Management Service is operating normally
AWS Import/Export Service is operating normally
AWS Internet Connectivity (Frankfurt) Service is operating normally
AWS Internet Connectivity (Ireland) Service is operating normally
AWS Internet Connectivity (London) Service is operating normally
AWS Internet Connectivity (Paris) Service is operating normally
AWS IoT (Frankfurt) Service is operating normally
AWS IoT (Ireland) Service is operating normally
AWS IoT (London) Service is operating normally
AWS IoT 1-Click (Frankfurt) Service is operating normally
AWS IoT 1-Click (Ireland) Service is operating normally
AWS IoT 1-Click (London) Service is operating normally
AWS IoT Analytics (Frankfurt) Service is operating normally
AWS IoT Analytics (Ireland) Service is operating normally
AWS IoT Device Defender (Frankfurt) Service is operating normally
AWS IoT Device Defender (Ireland) Service is operating normally
AWS IoT Device Defender (London) Service is operating normally
AWS IoT Device Management Service is operating normally
AWS Key Management Service (Frankfurt) Service is operating normally
AWS Key Management Service (Ireland) Service is operating normally
AWS Key Management Service (London) Service is operating normally
AWS Key Management Service (Paris) Service is operating normally
AWS Key Management Service (Stockholm) Service is operating normally
AWS Lambda (Frankfurt) Service is operating normally
AWS Lambda (Ireland) Service is operating normally
AWS Lambda (London) Service is operating normally
AWS Lambda (Paris) Service is operating normally
AWS Lambda (Stockholm) Service is operating normally
AWS License Manager (Frankfurt) Service is operating normally
AWS License Manager (Ireland) Service is operating normally
AWS License Manager (London) Service is operating normally
AWS Management Console Service is operating normally
AWS Marketplace Service is operating normally
AWS NAT Gateway (Frankfurt) Service is operating normally
AWS NAT Gateway (Ireland) Service is operating normally
AWS NAT Gateway (London) Service is operating normally
AWS NAT Gateway (Paris) Service is operating normally
AWS OpsWorks for Chef Automate (Frankfurt) Service is operating normally
AWS OpsWorks for Chef Automate (Ireland) Service is operating normally
AWS OpsWorks for Puppet Enterprise (Frankfurt) Service is operating normally
AWS OpsWorks for Puppet Enterprise (Ireland) Service is operating normally
AWS OpsWorks Stacks (Frankfurt) Service is operating normally
AWS OpsWorks Stacks (Ireland) Service is operating normally
AWS OpsWorks Stacks (London) Service is operating normally
AWS OpsWorks Stacks (Paris) Service is operating normally
AWS Organizations Service is operating normally
AWS QuickSight (Ireland) Service is operating normally
AWS Resource Access Manager (Frankfurt) Service is operating normally
AWS Resource Access Manager (Ireland) Service is operating normally
AWS Resource Access Manager (London) Service is operating normally
AWS Resource Access Manager (Paris) Service is operating normally
AWS Resource Groups Service is operating normally
AWS Resource Groups Tagging API (Frankfurt) Service is operating normally
AWS Resource Groups Tagging API (Ireland) Service is operating normally
AWS Resource Groups Tagging API (London) Service is operating normally
AWS Resource Groups Tagging API (Paris) Service is operating normally
AWS Resource Groups Tagging API (Stockholm) Service is operating normally
AWS RoboMaker (Ireland) Service is operating normally
AWS Secrets Manager (Frankfurt) Service is operating normally
AWS Secrets Manager (Ireland) Service is operating normally
AWS Secrets Manager (London) Service is operating normally
AWS Security Hub (Frankfurt) Service is operating normally
AWS Security Hub (Ireland) Service is operating normally
AWS Security Hub (London) Service is operating normally
AWS Security Hub (Paris) Service is operating normally
AWS Serverless Application Repository (Frankfurt) Service is operating normally
AWS Serverless Application Repository (Ireland) Service is operating normally
AWS Serverless Application Repository (London) Service is operating normally
AWS Service Catalog (Frankfurt) Service is operating normally
AWS Service Catalog (Ireland) Service is operating normally
AWS Service Catalog (London) Service is operating normally
AWS Service Catalog (Paris) Service is operating normally
AWS Step Functions (Frankfurt) Service is operating normally
AWS Step Functions (Ireland) Service is operating normally
AWS Step Functions (London) Service is operating normally
AWS Step Functions (Paris) Service is operating normally
AWS Step Functions (Stockholm) Service is operating normally
AWS Storage Gateway (Frankfurt) Service is operating normally
AWS Storage Gateway (Ireland) Service is operating normally
AWS Storage Gateway (London) Service is operating normally
AWS Storage Gateway (Paris) Service is operating normally
AWS Storage Gateway (Stockholm) Service is operating normally
AWS Systems Manager (Frankfurt) Service is operating normally
AWS Systems Manager (Ireland) Service is operating normally
AWS Systems Manager (London) Service is operating normally
AWS Systems Manager (Stockholm) Service is operating normally
AWS Transfer for SFTP (Frankfurt) Service is operating normally
AWS Transfer for SFTP (Ireland) Service is operating normally
AWS Transfer for SFTP (London) Service is operating normally
AWS Transfer for SFTP (Paris) Service is operating normally
AWS Transit Gateway (Frankfurt) Service is operating normally
AWS Transit Gateway (Ireland) Service is operating normally
AWS Transit Gateway (London) Service is operating normally
AWS Transit Gateway (Paris) Service is operating normally
AWS VPCE PrivateLink (Frankfurt) Service is operating normally
AWS VPCE PrivateLink (Ireland) Service is operating normally
AWS VPCE PrivateLink (Paris) Service is operating normally
AWS WAF Service is operating normally
AWS X-Ray (Frankfurt) Service is operating normally
AWS X-Ray (Ireland) Service is operating normally
AWS X-Ray (London) Service is operating normally
AWS X-Ray (Stockholm) Service is operating normally
Recent Events Details RSS
No recent events.
Remaining Services Details RSS
Amazon API Gateway (Mumbai) Service is operating normally
Amazon API Gateway (Seoul) Service is operating normally
Amazon API Gateway (Singapore) Service is operating normally
Amazon API Gateway (Sydney) Service is operating normally
Amazon API Gateway (Tokyo) Service is operating normally
Amazon AppStream 2.0 (Seoul) Service is operating normally
Amazon AppStream 2.0 (Singapore) Service is operating normally
Amazon AppStream 2.0 (Sydney) Service is operating normally
Amazon AppStream 2.0 (Tokyo) Service is operating normally
Amazon Athena (Mumbai) Service is operating normally
Amazon Athena (Seoul) Service is operating normally
Amazon Athena (Singapore) Service is operating normally
Amazon Athena (Sydney) Service is operating normally
Amazon Athena (Tokyo) Service is operating normally
Amazon Chime Service is operating normally
Amazon Cloud Directory (Singapore) Service is operating normally
Amazon Cloud Directory (Sydney) Service is operating normally
Amazon CloudFront Service is operating normally
Amazon CloudSearch (Seoul) Service is operating normally
Amazon CloudSearch (Singapore) Service is operating normally
Amazon CloudSearch (Sydney) Service is operating normally
Amazon CloudSearch (Tokyo) Service is operating normally
Amazon CloudWatch (Mumbai) Service is operating normally
Amazon CloudWatch (Osaka-Local) Service is operating normally
Amazon CloudWatch (Seoul) Service is operating normally
Amazon CloudWatch (Singapore) Service is operating normally
Amazon CloudWatch (Sydney) Service is operating normally
Amazon CloudWatch (Tokyo) Service is operating normally
Amazon Cognito (Mumbai) Service is operating normally
Amazon Cognito (Seoul) Service is operating normally
Amazon Cognito (Singapore) Service is operating normally
Amazon Cognito (Sydney) Service is operating normally
Amazon Cognito (Tokyo) Service is operating normally
Amazon Comprehend (Singapore) Service is operating normally
Amazon Comprehend (Sydney) Service is operating normally
Amazon Connect (Sydney) Service is operating normally
Amazon Connect (Tokyo) Service is operating normally
Amazon Data Lifecycle Manager (Mumbai) Service is operating normally
Amazon Data Lifecycle Manager (Seoul) Service is operating normally
Amazon Data Lifecycle Manager (Singapore) Service is operating normally
Amazon Data Lifecycle Manager (Sydney) Service is operating normally
Amazon Data Lifecycle Manager (Tokyo) Service is operating normally
Amazon DynamoDB (Mumbai) Service is operating normally
Amazon DynamoDB (Osaka-Local) Service is operating normally
Amazon DynamoDB (Seoul) Service is operating normally
Amazon DynamoDB (Singapore) Service is operating normally
Amazon DynamoDB (Sydney) Service is operating normally
Amazon DynamoDB (Tokyo) Service is operating normally
Amazon DynamoDB Accelerator (DAX) (Singapore) Service is operating normally
Amazon DynamoDB Accelerator (DAX) (Sydney) Service is operating normally
Amazon DynamoDB Accelerator (DAX) (Tokyo) Service is operating normally
Amazon Elastic Compute Cloud (Mumbai) Service is operating normally
Amazon Elastic Compute Cloud (Osaka-Local) Service is operating normally
Amazon Elastic Compute Cloud (Seoul) Service is operating normally
Amazon Elastic Compute Cloud (Singapore) Service is operating normally
Amazon Elastic Compute Cloud (Sydney) Service is operating normally
Amazon Elastic Compute Cloud (Tokyo) Service is operating normally
Amazon Elastic Container Registry (Mumbai) Service is operating normally
Amazon Elastic Container Registry (Seoul) Service is operating normally
Amazon Elastic Container Registry (Singapore) Service is operating normally
Amazon Elastic Container Registry (Sydney) Service is operating normally
Amazon Elastic Container Registry (Tokyo) Service is operating normally
Amazon Elastic Container Service (Mumbai) Service is operating normally
Amazon Elastic Container Service (Seoul) Service is operating normally
Amazon Elastic Container Service (Singapore) Service is operating normally
Amazon Elastic Container Service (Sydney) Service is operating normally
Amazon Elastic Container Service (Tokyo) Service is operating normally
Amazon Elastic Container Service for Kubernetes (Mumbai) Service is operating normally
Amazon Elastic File System (Seoul) Service is operating normally
Amazon Elastic File System (Singapore) Service is operating normally
Amazon Elastic File System (Sydney) Service is operating normally
Amazon Elastic File System (Tokyo) Service is operating normally
Amazon Elastic Load Balancing (Mumbai) Service is operating normally
Amazon Elastic Load Balancing (Osaka-Local) Service is operating normally
Amazon Elastic Load Balancing (Seoul) Service is operating normally
Amazon Elastic Load Balancing (Singapore) Service is operating normally
Amazon Elastic Load Balancing (Sydney) Service is operating normally
Amazon Elastic Load Balancing (Tokyo) Service is operating normally
Amazon Elastic MapReduce (Mumbai) Service is operating normally
Amazon Elastic MapReduce (Osaka-Local) Service is operating normally
Amazon Elastic MapReduce (Seoul) Service is operating normally
Amazon Elastic MapReduce (Singapore) Service is operating normally
Amazon Elastic MapReduce (Sydney) Service is operating normally
Amazon Elastic MapReduce (Tokyo) Service is operating normally
Amazon Elastic Transcoder (Mumbai) Service is operating normally
Amazon Elastic Transcoder (Singapore) Service is operating normally
Amazon Elastic Transcoder (Sydney) Service is operating normally
Amazon Elastic Transcoder (Tokyo) Service is operating normally
Amazon ElastiCache (Mumbai) Service is operating normally
Amazon ElastiCache (Osaka-Local) Service is operating normally
Amazon ElastiCache (Seoul) Service is operating normally
Amazon ElastiCache (Singapore) Service is operating normally
Amazon ElastiCache (Sydney) Service is operating normally
Amazon ElastiCache (Tokyo) Service is operating normally
Amazon Elasticsearch Service (Mumbai) Service is operating normally
Amazon Elasticsearch Service (Seoul) Service is operating normally
Amazon Elasticsearch Service (Singapore) Service is operating normally
Amazon Elasticsearch Service (Sydney) Service is operating normally
Amazon Elasticsearch Service (Tokyo) Service is operating normally
Amazon FreeRTOS (Sydney) Service is operating normally
Amazon FreeRTOS (Tokyo) Service is operating normally
Amazon GameLift (Mumbai) Service is operating normally
Amazon GameLift (Seoul) Service is operating normally
Amazon GameLift (Singapore) Service is operating normally
Amazon GameLift (Sydney) Service is operating normally
Amazon GameLift (Tokyo) Service is operating normally
Amazon Glacier (Mumbai) Service is operating normally
Amazon Glacier (Osaka-Local) Service is operating normally
Amazon Glacier (Seoul) Service is operating normally
Amazon Glacier (Singapore) Service is operating normally
Amazon Glacier (Sydney) Service is operating normally
Amazon Glacier (Tokyo) Service is operating normally
Amazon GuardDuty (Mumbai) Service is operating normally
Amazon GuardDuty (Seoul) Service is operating normally
Amazon GuardDuty (Singapore) Service is operating normally
Amazon GuardDuty (Sydney) Service is operating normally
Amazon GuardDuty (Tokyo) Service is operating normally
Amazon Inspector (Mumbai) Service is operating normally
Amazon Inspector (Seoul) Service is operating normally
Amazon Inspector (Sydney) Service is operating normally
Amazon Inspector (Tokyo) Service is operating normally
Amazon Inter-Region VPC Peering Service is operating normally
Amazon Kinesis Data Streams (Mumbai) Service is operating normally
Amazon Kinesis Data Streams (Osaka-Local) Service is operating normally
Amazon Kinesis Data Streams (Seoul) Service is operating normally
Amazon Kinesis Data Streams (Singapore) Service is operating normally
Amazon Kinesis Data Streams (Sydney) Service is operating normally
Amazon Kinesis Data Streams (Tokyo) Service is operating normally
Amazon Kinesis Firehose (Mumbai) Service is operating normally
Amazon Kinesis Firehose (Seoul) Service is operating normally
Amazon Kinesis Firehose (Singapore) Service is operating normally
Amazon Kinesis Firehose (Sydney) Service is operating normally
Amazon Kinesis Firehose (Tokyo) Service is operating normally
Amazon Kinesis Video Streams (Tokyo) Service is operating normally
Amazon Lightsail (Mumbai) Service is operating normally
Amazon Lightsail (Seoul) Service is operating normally
Amazon Lightsail (Singapore) Service is operating normally
Amazon Lightsail (Sydney) Service is operating normally
Amazon Lightsail (Tokyo) Service is operating normally
Amazon MQ (Seoul) Service is operating normally
Amazon MQ (Singapore) Service is operating normally
Amazon MQ (Sydney) Service is operating normally
Amazon MQ (Tokyo) Service is operating normally
Amazon Polly (Mumbai) Service is operating normally
Amazon Polly (Seoul) Service is operating normally
Amazon Polly (Singapore) Service is operating normally
Amazon Polly (Sydney) Service is operating normally
Amazon Polly (Tokyo) Service is operating normally
Amazon Redshift (Mumbai) Service is operating normally
Amazon Redshift (Osaka-Local) Service is operating normally
Amazon Redshift (Seoul) Service is operating normally
Amazon Redshift (Singapore) Service is operating normally
Amazon Redshift (Sydney) Service is operating normally
Amazon Redshift (Tokyo) Service is operating normally
Amazon Rekognition (Sydney) Service is operating normally
Amazon Rekognition (Tokyo) Service is operating normally
Amazon Relational Database Service (Mumbai) Service is operating normally
Amazon Relational Database Service (Osaka-Local) Service is operating normally
Amazon Relational Database Service (Seoul) Service is operating normally
Amazon Relational Database Service (Singapore) Service is operating normally
Amazon Relational Database Service (Sydney) Service is operating normally
Amazon Relational Database Service (Tokyo) Service is operating normally
Amazon Route 53 Service is operating normally
Amazon Route 53 Domain Registration Service is operating normally
Amazon Route 53 Private DNS (Mumbai) Service is operating normally
Amazon Route 53 Private DNS (Osaka-Local) Service is operating normally
Amazon Route 53 Private DNS (Seoul) Service is operating normally
Amazon Route 53 Private DNS (Singapore) Service is operating normally
Amazon Route 53 Private DNS (Sydney) Service is operating normally
Amazon Route 53 Private DNS (Tokyo) Service is operating normally
Amazon Route 53 Resolver (Singapore) Service is operating normally
Amazon Route 53 Resolver (Sydney) Service is operating normally
Amazon Route 53 Resolver (Tokyo) Service is operating normally
Amazon SageMaker (Seoul) Service is operating normally
Amazon SageMaker (Sydney) Service is operating normally
Amazon SageMaker (Tokyo) Service is operating normally
Amazon Simple Notification Service (Mumbai) Service is operating normally
Amazon Simple Notification Service (Osaka-Local) Service is operating normally
Amazon Simple Notification Service (Seoul) Service is operating normally
Amazon Simple Notification Service (Singapore) Service is operating normally
Amazon Simple Notification Service (Sydney) Service is operating normally
Amazon Simple Notification Service (Tokyo) Service is operating normally
Amazon Simple Queue Service (Mumbai) Service is operating normally
Amazon Simple Queue Service (Osaka-Local) Service is operating normally
Amazon Simple Queue Service (Seoul) Service is operating normally
Amazon Simple Queue Service (Singapore) Service is operating normally
Amazon Simple Queue Service (Sydney) Service is operating normally
Amazon Simple Queue Service (Tokyo) Service is operating normally
Amazon Simple Storage Service (Mumbai) Service is operating normally
Amazon Simple Storage Service (Osaka-Local) Service is operating normally
Amazon Simple Storage Service (Seoul) Service is operating normally
Amazon Simple Storage Service (Singapore) Service is operating normally
Amazon Simple Storage Service (Sydney) Service is operating normally
Amazon Simple Storage Service (Tokyo) Service is operating normally
Amazon Simple Workflow Service (Mumbai) Service is operating normally
Amazon Simple Workflow Service (Osaka-Local) Service is operating normally
Amazon Simple Workflow Service (Seoul) Service is operating normally
Amazon Simple Workflow Service (Singapore) Service is operating normally
Amazon Simple Workflow Service (Sydney) Service is operating normally
Amazon Simple Workflow Service (Tokyo) Service is operating normally
Amazon SimpleDB (Singapore) Service is operating normally
Amazon SimpleDB (Sydney) Service is operating normally
Amazon SimpleDB (Tokyo) Service is operating normally
Amazon Sumerian (Sydney) Service is operating normally
Amazon Transcribe (Mumbai) Service is operating normally
Amazon Transcribe (Singapore) Service is operating normally
Amazon Transcribe (Sydney) Service is operating normally
Amazon Virtual Private Cloud (Mumbai) Service is operating normally
Amazon Virtual Private Cloud (Osaka-Local) Service is operating normally
Amazon Virtual Private Cloud (Seoul) Service is operating normally
Amazon Virtual Private Cloud (Singapore) Service is operating normally
Amazon Virtual Private Cloud (Sydney) Service is operating normally
Amazon Virtual Private Cloud (Tokyo) Service is operating normally
Amazon WorkDocs (Singapore) Service is operating normally
Amazon WorkDocs (Sydney) Service is operating normally
Amazon WorkDocs (Tokyo) Service is operating normally
Amazon WorkSpaces (Seoul) Service is operating normally
Amazon WorkSpaces (Singapore) Service is operating normally
Amazon WorkSpaces (Sydney) Service is operating normally
Amazon WorkSpaces (Tokyo) Service is operating normally
Auto Scaling (Mumbai) Service is operating normally
Auto Scaling (Osaka-Local) Service is operating normally
Auto Scaling (Seoul) Service is operating normally
Auto Scaling (Singapore) Service is operating normally
Auto Scaling (Sydney) Service is operating normally
Auto Scaling (Tokyo) Service is operating normally
AWS AppSync (Mumbai) Service is operating normally
AWS AppSync (Seoul) Service is operating normally
AWS AppSync (Singapore) Service is operating normally
AWS AppSync (Sydney) Service is operating normally
AWS AppSync (Tokyo) Service is operating normally
AWS Batch (Mumbai) Service is operating normally
AWS Batch (Seoul) Service is operating normally
AWS Batch (Singapore) Service is operating normally
AWS Batch (Sydney) Service is operating normally
AWS Batch (Tokyo) Service is operating normally
AWS Billing Console Service is operating normally
AWS Certificate Manager (Mumbai) Service is operating normally
AWS Certificate Manager (Osaka-Local) Service is operating normally
AWS Certificate Manager (Seoul) Service is operating normally
AWS Certificate Manager (Singapore) Service is operating normally
AWS Certificate Manager (Sydney) Service is operating normally
AWS Certificate Manager (Tokyo) Service is operating normally
AWS Cloud Map (Mumbai) Service is operating normally
AWS Cloud Map (Seoul) Service is operating normally
AWS Cloud Map (Singapore) Service is operating normally
AWS Cloud Map (Sydney) Service is operating normally
AWS Cloud Map (Tokyo) Service is operating normally
AWS Cloud9 (Singapore) Service is operating normally
AWS CloudFormation (Mumbai) Service is operating normally
AWS CloudFormation (Osaka-Local) Service is operating normally
AWS CloudFormation (Seoul) Service is operating normally
AWS CloudFormation (Singapore) Service is operating normally
AWS CloudFormation (Sydney) Service is operating normally
AWS CloudFormation (Tokyo) Service is operating normally
AWS CloudHSM (Singapore) Service is operating normally
AWS CloudHSM (Sydney) Service is operating normally
AWS CloudHSM (Tokyo) Service is operating normally
AWS CloudTrail (Mumbai) Service is operating normally
AWS CloudTrail (Osaka-Local) Service is operating normally
AWS CloudTrail (Seoul) Service is operating normally
AWS CloudTrail (Singapore) Service is operating normally
AWS CloudTrail (Sydney) Service is operating normally
AWS CloudTrail (Tokyo) Service is operating normally
AWS CodeBuild (Mumbai) Service is operating normally
AWS CodeBuild (Seoul) Service is operating normally
AWS CodeBuild (Singapore) Service is operating normally
AWS CodeBuild (Sydney) Service is operating normally
AWS CodeBuild (Tokyo) Service is operating normally
AWS CodeCommit (Mumbai) Service is operating normally
AWS CodeCommit (Seoul) Service is operating normally
AWS CodeCommit (Singapore) Service is operating normally
AWS CodeCommit (Sydney) Service is operating normally
AWS CodeCommit (Tokyo) Service is operating normally
AWS CodeDeploy (Mumbai) Service is operating normally
AWS CodeDeploy (Osaka-Local) Service is operating normally
AWS CodeDeploy (Seoul) Service is operating normally
AWS CodeDeploy (Singapore) Service is operating normally
AWS CodeDeploy (Sydney) Service is operating normally
AWS CodeDeploy (Tokyo) Service is operating normally
AWS CodePipeline (Mumbai) Service is operating normally
AWS CodePipeline (Seoul) Service is operating normally
AWS CodePipeline (Singapore) Service is operating normally
AWS CodePipeline (Sydney) Service is operating normally
AWS CodePipeline (Tokyo) Service is operating normally
AWS CodeStar (Seoul) Service is operating normally
AWS CodeStar (Singapore) Service is operating normally
AWS CodeStar (Sydney) Service is operating normally
AWS CodeStar (Tokyo) Service is operating normally
AWS Config (Mumbai) Service is operating normally
AWS Config (Seoul) Service is operating normally
AWS Config (Singapore) Service is operating normally
AWS Config (Sydney) Service is operating normally
AWS Config (Tokyo) Service is operating normally
AWS Data Pipeline (Sydney) Service is operating normally
AWS Data Pipeline (Tokyo) Service is operating normally
AWS Database Migration Service (Mumbai) Service is operating normally
AWS Database Migration Service (Seoul) Service is operating normally
AWS Database Migration Service (Singapore) Service is operating normally
AWS Database Migration Service (Sydney) Service is operating normally
AWS Database Migration Service (Tokyo) Service is operating normally
AWS DataSync (Seoul) Service is operating normally
AWS DataSync (Singapore) Service is operating normally
AWS DataSync (Sydney) Service is operating normally
AWS DataSync (Tokyo) Service is operating normally
AWS Direct Connect (Mumbai) Service is operating normally
AWS Direct Connect (Seoul) Service is operating normally
AWS Direct Connect (Singapore) Service is operating normally
AWS Direct Connect (Sydney) Service is operating normally
AWS Direct Connect (Tokyo) Service is operating normally
AWS Directory Service (Mumbai) Service is operating normally
AWS Directory Service (Seoul) Service is operating normally
AWS Directory Service (Singapore) Service is operating normally
AWS Directory Service (Sydney) Service is operating normally
AWS Directory Service (Tokyo) Service is operating normally
AWS Elastic Beanstalk (Mumbai) Service is operating normally
AWS Elastic Beanstalk (Osaka-Local) Service is operating normally
AWS Elastic Beanstalk (Seoul) Service is operating normally
AWS Elastic Beanstalk (Singapore) Service is operating normally
AWS Elastic Beanstalk (Sydney) Service is operating normally
AWS Elastic Beanstalk (Tokyo) Service is operating normally
AWS Elemental MediaConnect (Singapore) Service is operating normally
AWS Elemental MediaConnect (Sydney) Service is operating normally
AWS Elemental MediaConnect (Tokyo) Service is operating normally
AWS Elemental MediaConvert (Mumbai) Service is operating normally
AWS Elemental MediaConvert (Seoul) Service is operating normally
AWS Elemental MediaConvert (Singapore) Service is operating normally
AWS Elemental MediaConvert (Sydney) Service is operating normally
AWS Elemental MediaConvert (Tokyo) Service is operating normally
AWS Elemental MediaLive (Mumbai) Service is operating normally
AWS Elemental MediaLive (Seoul) Service is operating normally
AWS Elemental MediaLive (Singapore) Service is operating normally
AWS Elemental MediaLive (Tokyo) Service is operating normally
AWS Elemental MediaPackage (Singapore) Service is operating normally
AWS Elemental MediaPackage (Sydney) Service is operating normally
AWS Elemental MediaPackage (Tokyo) Service is operating normally
AWS Elemental MediaStore (Sydney) Service is operating normally
AWS Elemental MediaStore (Tokyo) Service is operating normally
AWS Elemental MediaTailor (Singapore) Service is operating normally
AWS Elemental MediaTailor (Sydney) Service is operating normally
AWS Elemental MediaTailor (Tokyo) Service is operating normally
AWS Firewall Manager (Sydney) Service is operating normally
AWS Firewall Manager (Tokyo) Service is operating normally
AWS Global Accelerator Service is operating normally
AWS Glue (Mumbai) Service is operating normally
AWS Glue (Seoul) Service is operating normally
AWS Glue (Singapore) Service is operating normally
AWS Glue (Sydney) Service is operating normally
AWS Glue (Tokyo) Service is operating normally
AWS Greengrass (Sydney) Service is operating normally
AWS Greengrass (Tokyo) Service is operating normally
AWS Identity and Access Management Service is operating normally
AWS Import/Export Service is operating normally
AWS Internet Connectivity (Mumbai) Service is operating normally
AWS Internet Connectivity (Seoul) Service is operating normally
AWS Internet Connectivity (Singapore) Service is operating normally
AWS Internet Connectivity (Sydney) Service is operating normally
AWS Internet Connectivity (Tokyo) Service is operating normally
AWS IoT (Seoul) Service is operating normally
AWS IoT (Singapore) Service is operating normally
AWS IoT (Sydney) Service is operating normally
AWS IoT (Tokyo) Service is operating normally
AWS IoT 1-Click (Tokyo) Service is operating normally
AWS IoT Analytics (Tokyo) Service is operating normally
AWS IoT Device Defender (Seoul) Service is operating normally
AWS IoT Device Defender (Singapore) Service is operating normally
AWS IoT Device Defender (Sydney) Service is operating normally
AWS IoT Device Defender (Tokyo) Service is operating normally
AWS IoT Device Management Service is operating normally
AWS Key Management Service (Mumbai) Service is operating normally
AWS Key Management Service (Osaka-Local) Service is operating normally
AWS Key Management Service (Seoul) Service is operating normally
AWS Key Management Service (Singapore) Service is operating normally
AWS Key Management Service (Sydney) Service is operating normally
AWS Key Management Service (Tokyo) Service is operating normally
AWS Lambda (Mumbai) Service is operating normally
AWS Lambda (Seoul) Service is operating normally
AWS Lambda (Singapore) Service is operating normally
AWS Lambda (Sydney) Service is operating normally
AWS Lambda (Tokyo) Service is operating normally
AWS License Manager (Mumbai) Service is operating normally
AWS License Manager (Seoul) Service is operating normally
AWS License Manager (Singapore) Service is operating normally
AWS License Manager (Sydney) Service is operating normally
AWS License Manager (Tokyo) Service is operating normally
AWS Management Console Service is operating normally
AWS Marketplace Service is operating normally
AWS NAT Gateway (Mumbai) Service is operating normally
AWS NAT Gateway (Seoul) Service is operating normally
AWS NAT Gateway (Singapore) Service is operating normally
AWS NAT Gateway (Sydney) Service is operating normally
AWS NAT Gateway (Tokyo) Service is operating normally
AWS OpsWorks for Chef Automate (Singapore) Service is operating normally
AWS OpsWorks for Chef Automate (Sydney) Service is operating normally
AWS OpsWorks for Chef Automate (Tokyo) Service is operating normally
AWS OpsWorks for Puppet Enterprise (Singapore) Service is operating normally
AWS OpsWorks for Puppet Enterprise (Sydney) Service is operating normally
AWS OpsWorks for Puppet Enterprise (Tokyo) Service is operating normally
AWS OpsWorks Stacks (Mumbai) Service is operating normally
AWS OpsWorks Stacks (Seoul) Service is operating normally
AWS OpsWorks Stacks (Singapore) Service is operating normally
AWS OpsWorks Stacks (Sydney) Service is operating normally
AWS OpsWorks Stacks (Tokyo) Service is operating normally
AWS Organizations Service is operating normally
AWS QuickSight (Singapore) Service is operating normally
AWS QuickSight (Sydney) Service is operating normally
AWS QuickSight (Tokyo) Service is operating normally
AWS Resource Access Manager (Mumbai) Service is operating normally
AWS Resource Access Manager (Seoul) Service is operating normally
AWS Resource Access Manager (Singapore) Service is operating normally
AWS Resource Access Manager (Sydney) Service is operating normally
AWS Resource Access Manager (Tokyo) Service is operating normally
AWS Resource Groups Service is operating normally
AWS Resource Groups Tagging API (Mumbai) Service is operating normally
AWS Resource Groups Tagging API (Osaka-Local) Service is operating normally
AWS Resource Groups Tagging API (Seoul) Service is operating normally
AWS Resource Groups Tagging API (Singapore) Service is operating normally
AWS Resource Groups Tagging API (Sydney) Service is operating normally
AWS Resource Groups Tagging API (Tokyo) Service is operating normally
AWS Secrets Manager (Mumbai) Service is operating normally
AWS Secrets Manager (Seoul) Service is operating normally
AWS Secrets Manager (Singapore) Service is operating normally
AWS Secrets Manager (Sydney) Service is operating normally
AWS Secrets Manager (Tokyo) Service is operating normally
AWS Security Hub (Mumbai) Service is operating normally
AWS Security Hub (Seoul) Service is operating normally
AWS Security Hub (Singapore) Service is operating normally
AWS Security Hub (Sydney) Service is operating normally
AWS Security Hub (Tokyo) Service is operating normally
AWS Serverless Application Repository (Mumbai) Service is operating normally
AWS Serverless Application Repository (Seoul) Service is operating normally
AWS Serverless Application Repository (Singapore) Service is operating normally
AWS Serverless Application Repository (Sydney) Service is operating normally
AWS Serverless Application Repository (Tokyo) Service is operating normally
AWS Service Catalog (Singapore) Service is operating normally
AWS Service Catalog (Sydney) Service is operating normally
AWS Service Catalog (Tokyo) Service is operating normally
AWS Step Functions (Seoul) Service is operating normally
AWS Step Functions (Singapore) Service is operating normally
AWS Step Functions (Sydney) Service is operating normally
AWS Step Functions (Tokyo) Service is operating normally
AWS Storage Gateway (Mumbai) Service is operating normally
AWS Storage Gateway (Seoul) Service is operating normally
AWS Storage Gateway (Singapore) Service is operating normally
AWS Storage Gateway (Sydney) Service is operating normally
AWS Storage Gateway (Tokyo) Service is operating normally
AWS Systems Manager (Mumbai) Service is operating normally
AWS Systems Manager (Seoul) Service is operating normally
AWS Systems Manager (Singapore) Service is operating normally
AWS Systems Manager (Sydney) Service is operating normally
AWS Systems Manager (Tokyo) Service is operating normally
AWS Transfer for SFTP (Seoul) Service is operating normally
AWS Transfer for SFTP (Singapore) Service is operating normally
AWS Transfer for SFTP (Sydney) Service is operating normally
AWS Transfer for SFTP (Tokyo) Service is operating normally
AWS Transit Gateway (Mumbai) Service is operating normally
AWS Transit Gateway (Seoul) Service is operating normally
AWS Transit Gateway (Singapore) Service is operating normally
AWS Transit Gateway (Sydney) Service is operating normally
AWS Transit Gateway (Tokyo) Service is operating normally
AWS VPCE PrivateLink (Mumbai) Service is operating normally
AWS VPCE PrivateLink (Osaka-Local) Service is operating normally
AWS VPCE PrivateLink (Seoul) Service is operating normally
AWS VPCE PrivateLink (Singapore) Service is operating normally
AWS VPCE PrivateLink (Sydney) Service is operating normally
AWS VPCE PrivateLink (Tokyo) Service is operating normally
AWS WAF Service is operating normally
AWS X-Ray (Mumbai) Service is operating normally
AWS X-Ray (Seoul) Service is operating normally
AWS X-Ray (Singapore) Service is operating normally
AWS X-Ray (Sydney) Service is operating normally
AWS X-Ray (Tokyo) Service is operating normally


Service is operating normally Informational message Service degradation Service disruption

Status History

Amazon Web Services keeps a running log of all service interruptions that we publish in the table below for the past year. Mouse over any of the status icons below to see a detailed incident report (click on the icon to persist the popup). Click on the arrow buttons at the top of the table to move forward and backwards through the calendar. All dates and times are Pacific Time (PST/PDT).

Alexa for Business (N. Virginia)
Amazon API Gateway (Montreal)
Amazon API Gateway (N. California)
Amazon API Gateway (N. Virginia)
Amazon API Gateway (Ohio)
Amazon API Gateway (Oregon)
Amazon AppStream 2.0 (N. Virginia)
Amazon AppStream 2.0 (Oregon)
Amazon Athena (Montreal)
Amazon Athena (N. Virginia)
Amazon Athena (Ohio)
Amazon Athena (Oregon)
Amazon Chime
Amazon Cloud Directory (Montreal)
Amazon Cloud Directory (N. Virginia)
Amazon Cloud Directory (Ohio)
Amazon Cloud Directory (Oregon)
Amazon CloudFront
Amazon CloudSearch (N. California)
Amazon CloudSearch (N. Virginia)
Amazon CloudSearch (Oregon)
Amazon CloudWatch (Montreal)
Amazon CloudWatch (N. California)
Amazon CloudWatch (N. Virginia)
Amazon CloudWatch (Ohio)
Amazon CloudWatch (Oregon)
Amazon Cognito (Montreal)
Amazon Cognito (N. Virginia)
Amazon Cognito (Ohio)
Amazon Cognito (Oregon)
Amazon Comprehend (Montreal)
Amazon Comprehend (N. Virginia)
Amazon Comprehend (Ohio)
Amazon Comprehend (Oregon)
Amazon Comprehend Medical (N. Virginia)
Amazon Comprehend Medical (Ohio)
Amazon Comprehend Medical (Oregon)
Amazon Connect (N. Virginia)
Amazon Connect (Oregon)
Amazon Data Lifecycle Manager (Montreal)
Amazon Data Lifecycle Manager (N. California)
Amazon Data Lifecycle Manager (N. Virginia)
Amazon Data Lifecycle Manager (Ohio)
Amazon Data Lifecycle Manager (Oregon)
Amazon DocumentDB (N. Virginia)
Amazon DocumentDB (Ohio)
Amazon DocumentDB (Oregon)
Amazon DynamoDB (Montreal)
Amazon DynamoDB (N. California)
Amazon DynamoDB (N. Virginia)
Amazon DynamoDB (Ohio)
Amazon DynamoDB (Oregon)
Amazon DynamoDB Accelerator (DAX) (N. California)
Amazon DynamoDB Accelerator (DAX) (N. Virginia)
Amazon DynamoDB Accelerator (DAX) (Ohio)
Amazon DynamoDB Accelerator (DAX) (Oregon)
EC2 (Montreal)
EC2 (N. California)
EC2 (N. Virginia)
EC2 (Ohio)
EC2 (Oregon)
Amazon ECR (Montreal)
Amazon ECR (N. California)
Amazon ECR (N. Virginia)
Amazon ECR (Ohio)
Amazon ECR (Oregon)
Amazon ECS (Montreal)
Amazon ECS (N. California)
Amazon ECS (N. Virginia)
Amazon ECS (Ohio)
Amazon ECS (Oregon)
Amazon Elastic Container Service for Kubernetes (N. Virginia)
Amazon Elastic Container Service for Kubernetes (Oregon)
Amazon Elastic File System (N. California)
Amazon Elastic File System (N. Virginia)
Amazon Elastic File System (Ohio)
Amazon Elastic File System (Oregon)
ELB (Montreal)
ELB (N. California)
ELB (N. Virginia)
ELB (Ohio)
ELB (Oregon)
EMR (Montreal)
EMR (N. California)
EMR (N. Virginia)
EMR (Ohio)
EMR (Oregon)
Amazon Elastic Transcoder (N. California)
Amazon Elastic Transcoder (N. Virginia)
Amazon Elastic Transcoder (Oregon)
Amazon ElastiCache (Montreal)
Amazon ElastiCache (N. California)
Amazon ElastiCache (N. Virginia)
Amazon ElastiCache (Ohio)
Amazon ElastiCache (Oregon)
Amazon Elasticsearch Service (Montreal)
Amazon Elasticsearch Service (N. California)
Amazon Elasticsearch Service (N. Virginia)
Amazon Elasticsearch Service (Ohio)
Amazon Elasticsearch Service (Oregon)
Amazon Forecast (N. Virginia)
Amazon Forecast (Oregon)
Amazon FreeRTOS (N. Virginia)
Amazon FreeRTOS (Ohio)
Amazon FreeRTOS (Oregon)
Amazon FSx (N. Virginia)
Amazon FSx (Ohio)
Amazon FSx (Oregon)
Amazon GameLift (Montreal)
Amazon GameLift (N. California)
Amazon GameLift (N. Virginia)
Amazon GameLift (Ohio)
Amazon GameLift (Oregon)
Amazon Glacier (Montreal)
Amazon Glacier (N. California)
Amazon Glacier (N. Virginia)
Amazon Glacier (Ohio)
Amazon Glacier (Oregon)
Amazon GuardDuty (Montreal)
Amazon GuardDuty (N. California)
Amazon GuardDuty (N. Virginia)
Amazon GuardDuty (Ohio)
Amazon GuardDuty (Oregon)
Amazon Inspector (N. California)
Amazon Inspector (N. Virginia)
Amazon Inspector (Ohio)
Amazon Inspector (Oregon)
Amazon Inter-Region VPC Peering
Amazon Kinesis Analytics (N. Virginia)
Amazon Kinesis Analytics (Oregon)
Amazon Kinesis Data Streams (Montreal)
Amazon Kinesis Data Streams (N. California)
Amazon Kinesis Data Streams (N. Virginia)
Amazon Kinesis Data Streams (Ohio)
Amazon Kinesis Data Streams (Oregon)
Amazon Kinesis Firehose (Montreal)
Amazon Kinesis Firehose (N. California)
Amazon Kinesis Firehose (N. Virginia)
Amazon Kinesis Firehose (Ohio)
Amazon Kinesis Firehose (Oregon)
Amazon Kinesis Video Streams (N. Virginia)
Amazon Kinesis Video Streams (Oregon)
Amazon Lex (N. Virginia)
Amazon Lex (Oregon)
Amazon Lightsail (Montreal)
Amazon Lightsail (N. Virginia)
Amazon Lightsail (Ohio)
Amazon Lightsail (Oregon)
Amazon Machine Learning (N. Virginia)
Amazon Macie (N. Virginia)
Amazon Macie (Oregon)
Amazon MQ (N. California)
Amazon MQ (N. Virginia)
Amazon MQ (Ohio)
Amazon MQ (Oregon)
Amazon Neptune (N. Virginia)
Amazon Neptune (Ohio)
Amazon Neptune (Oregon)
Amazon Pinpoint (N. Virginia)
Amazon Polly (Montreal)
Amazon Polly (N. California)
Amazon Polly (N. Virginia)
Amazon Polly (Ohio)
Amazon Polly (Oregon)
Amazon Redshift (Montreal)
Amazon Redshift (N. California)
Amazon Redshift (N. Virginia)
Amazon Redshift (Ohio)
Amazon Redshift (Oregon)
Amazon Rekognition (N. Virginia)
Amazon Rekognition (Ohio)
Amazon Rekognition (Oregon)
RDS (Montreal)
RDS (N. California)
RDS (N. Virginia)
RDS (Ohio)
RDS (Oregon)
Amazon Route 53
Amazon Route 53 Domain Registration
Amazon Route 53 Private DNS (Montreal)
Amazon Route 53 Private DNS (N. California)
Amazon Route 53 Private DNS (N. Virginia)
Amazon Route 53 Private DNS (Ohio)
Amazon Route 53 Private DNS (Oregon)
Amazon Route 53 Resolver (N. Virginia)
Amazon Route 53 Resolver (Ohio)
Amazon Route 53 Resolver (Oregon)
Amazon SageMaker (N. Virginia)
Amazon SageMaker (Ohio)
Amazon SageMaker (Oregon)
Amazon Simple Email Service (N. Virginia)
Amazon Simple Email Service (Oregon)
SNS (Montreal)
SNS (N. California)
SNS (N. Virginia)
SNS (Ohio)
SNS (Oregon)
SQS (Montreal)
SQS (N. California)
SQS (N. Virginia)
SQS (Ohio)
SQS (Oregon)
S3 (Montreal)
S3 (N. California)
S3 (N. Virginia)
S3 (Ohio)
S3 (Oregon)
SWF (Montreal)
SWF (N. California)
SWF (N. Virginia)
SWF (Ohio)
SWF (Oregon)
Amazon SimpleDB (N. California)
Amazon SimpleDB (N. Virginia)
Amazon SimpleDB (Oregon)
Amazon Sumerian (N. Virginia)
Amazon Sumerian (Ohio)
Amazon Sumerian (Oregon)
Amazon Transcribe (Montreal)
Amazon Transcribe (N. Virginia)
Amazon Transcribe (Ohio)
Amazon Transcribe (Oregon)
Amazon Translate (N. Virginia)
Amazon Translate (Ohio)
Amazon Translate (Oregon)
VPC (Montreal)
VPC (N. California)
VPC (N. Virginia)
VPC (Ohio)
VPC (Oregon)
Amazon WorkDocs (N. Virginia)
Amazon WorkDocs (Oregon)
Amazon Worklink (N. Virginia)
Amazon Worklink (Ohio)
Amazon Worklink (Oregon)
Amazon WorkMail (N. Virginia)
Amazon WorkMail (Oregon)
Amazon WorkSpaces (Montreal)
Amazon WorkSpaces (N. Virginia)
Amazon WorkSpaces (Oregon)
Auto Scaling (Montreal)
Auto Scaling (N. California)
Auto Scaling (N. Virginia)
Auto Scaling (Ohio)
Auto Scaling (Oregon)
AWS Application Discovery Service (Oregon)
AWS AppSync (N. Virginia)
AWS AppSync (Ohio)
AWS AppSync (Oregon)
AWS Backup (N. Virginia)
AWS Backup (Ohio)
AWS Backup (Oregon)
AWS Batch (Montreal)
AWS Batch (N. California)
AWS Batch (N. Virginia)
AWS Batch (Ohio)
AWS Batch (Oregon)
AWS Billing Console
AWS Certificate Manager (Montreal)
AWS Certificate Manager (N. California)
AWS Certificate Manager (N. Virginia)
AWS Certificate Manager (Ohio)
AWS Certificate Manager (Oregon)
AWS Client VPN (N. Virginia)
AWS Client VPN (Ohio)
AWS Client VPN (Oregon)
AWS Cloud Map (Montreal)
AWS Cloud Map (N. California)
AWS Cloud Map (N. Virginia)
AWS Cloud Map (Ohio)
AWS Cloud Map (Oregon)
AWS Cloud9 (N. Virginia)
AWS Cloud9 (Ohio)
AWS Cloud9 (Oregon)
AWS CloudFormation (Montreal)
AWS CloudFormation (N. California)
AWS CloudFormation (N. Virginia)
AWS CloudFormation (Ohio)
AWS CloudFormation (Oregon)
AWS CloudHSM (Montreal)
AWS CloudHSM (N. California)
AWS CloudHSM (N. Virginia)
AWS CloudHSM (Ohio)
AWS CloudHSM (Oregon)
AWS CloudTrail (Montreal)
AWS CloudTrail (N. California)
AWS CloudTrail (N. Virginia)
AWS CloudTrail (Ohio)
AWS CloudTrail (Oregon)
AWS CodeBuild (Montreal)
AWS CodeBuild (N. California)
AWS CodeBuild (N. Virginia)
AWS CodeBuild (Ohio)
AWS CodeBuild (Oregon)
AWS CodeCommit (Montreal)
AWS CodeCommit (N. California)
AWS CodeCommit (N. Virginia)
AWS CodeCommit (Ohio)
AWS CodeCommit (Oregon)
AWS CodeDeploy (Montreal)
AWS CodeDeploy (N. California)
AWS CodeDeploy (N. Virginia)
AWS CodeDeploy (Ohio)
AWS CodeDeploy (Oregon)
AWS CodePipeline (Montreal)
AWS CodePipeline (N. California)
AWS CodePipeline (N. Virginia)
AWS CodePipeline (Ohio)
AWS CodePipeline (Oregon)
AWS CodeStar (Montreal)
AWS CodeStar (N. California)
AWS CodeStar (N. Virginia)
AWS CodeStar (Ohio)
AWS CodeStar (Oregon)
AWS Config (Montreal)
AWS Config (N. California)
AWS Config (N. Virginia)
AWS Config (Ohio)
AWS Config (Oregon)
AWS Control Tower (N. Virginia)
AWS Control Tower (Ohio)
AWS Control Tower (Oregon)
AWS Data Pipeline (N. Virginia)
AWS Data Pipeline (Oregon)
AWS DMS (Montreal)
AWS DMS (N. California)
AWS DMS (N. Virginia)
AWS DMS (Ohio)
AWS DMS (Oregon)
AWS DataSync (N. California)
AWS DataSync (N. Virginia)
AWS DataSync (Ohio)
AWS DataSync (Oregon)
AWS DeepLens (N. Virginia)
AWS Device Farm (Oregon)
AWS Direct Connect (Montreal)
AWS Direct Connect (N. California)
AWS Direct Connect (N. Virginia)
AWS Direct Connect (Ohio)
AWS Direct Connect (Oregon)
AWS Directory Service (Montreal)
AWS Directory Service (N. California)
AWS Directory Service (N. Virginia)
AWS Directory Service (Ohio)
AWS Directory Service (Oregon)
AWS Elastic Beanstalk (Montreal)
AWS Elastic Beanstalk (N. California)
AWS Elastic Beanstalk (N. Virginia)
AWS Elastic Beanstalk (Ohio)
AWS Elastic Beanstalk (Oregon)
AWS Elemental MediaConnect (N. California)
AWS Elemental MediaConnect (N. Virginia)
AWS Elemental MediaConnect (Oregon)
AWS Elemental MediaConvert (Montreal)
AWS Elemental MediaConvert (N. California)
AWS Elemental MediaConvert (N. Virginia)
AWS Elemental MediaConvert (Ohio)
AWS Elemental MediaConvert (Oregon)
AWS Elemental MediaLive (N. Virginia)
AWS Elemental MediaLive (Oregon)
AWS Elemental MediaPackage (N. Virginia)
AWS Elemental MediaPackage (Oregon)
AWS Elemental MediaStore (N. Virginia)
AWS Elemental MediaStore (Oregon)
AWS Elemental MediaTailor (N. Virginia)
AWS Elemental MediaTailor (Oregon)
AWS Firewall Manager (N. California)
AWS Firewall Manager (N. Virginia)
AWS Firewall Manager (Ohio)
AWS Global Accelerator
AWS Glue (Montreal)
AWS Glue (N. California)
AWS Glue (N. Virginia)
AWS Glue (Ohio)
AWS Glue (Oregon)
AWS Greengrass (N. Virginia)
AWS Greengrass (Oregon)
AWS IAM
AWS Import/Export
AWS Internet Connectivity (Montreal)
AWS Internet Connectivity (N. California)
AWS Internet Connectivity (N. Virginia)
AWS Internet Connectivity (Ohio)
AWS Internet Connectivity (Oregon)
AWS IoT (N. Virginia)
AWS IoT (Ohio)
AWS IoT (Oregon)
AWS IoT 1-Click (N. Virginia)
AWS IoT 1-Click (Ohio)
AWS IoT 1-Click (Oregon)
AWS IoT Analytics (N. Virginia)
AWS IoT Analytics (Ohio)
AWS IoT Analytics (Oregon)
AWS IoT Device Defender (N. Virginia)
AWS IoT Device Defender (Ohio)
AWS IoT Device Defender (Oregon)
AWS IoT Device Management
AWS Key Management Service (Montreal)
AWS Key Management Service (N. California)
AWS Key Management Service (N. Virginia)
AWS Key Management Service (Ohio)
AWS Key Management Service (Oregon)
AWS Lambda (Montreal)
AWS Lambda (N. California)
AWS Lambda (N. Virginia)
AWS Lambda (Ohio)
AWS Lambda (Oregon)
AWS License Manager (N. Virginia)
AWS License Manager (Ohio)
AWS License Manager (Oregon)
AWS Management Console
AWS Marketplace
AWS Migration Hub (Oregon)
AWS Mobile Hub (N. Virginia)
AWS NAT Gateway (Montreal)
AWS NAT Gateway (N. California)
AWS NAT Gateway (N. Virginia)
AWS NAT Gateway (Ohio)
AWS NAT Gateway (Oregon)
OpsWorks CM (N. California)
OpsWorks CM (N. Virginia)
OpsWorks CM (Ohio)
OpsWorks CM (Oregon)
AWS OpsWorks for Puppet Enterprise (N. California)
AWS OpsWorks for Puppet Enterprise (N. Virginia)
AWS OpsWorks for Puppet Enterprise (Ohio)
AWS OpsWorks for Puppet Enterprise (Oregon)
AWS OpsWorks Stacks (N. California)
AWS OpsWorks Stacks (N. Virginia)
AWS OpsWorks Stacks (Ohio)
AWS OpsWorks Stacks (Oregon)
AWS Organizations
AWS QuickSight (N. Virginia)
AWS QuickSight (Ohio)
AWS QuickSight (Oregon)
AWS Resource Access Manager (Montreal)
AWS Resource Access Manager (N. California)
AWS Resource Access Manager (N. Virginia)
AWS Resource Access Manager (Ohio)
AWS Resource Access Manager (Oregon)
AWS Resource Groups
Resource Tagging (Montreal)
Resource Tagging (N. California)
Resource Tagging (N. Virginia)
Resource Tagging (Ohio)
Resource Tagging (Oregon)
AWS RoboMaker (N. Virginia)
AWS RoboMaker (Oregon)
AWS Secrets Manager (Montreal)
AWS Secrets Manager (N. California)
AWS Secrets Manager (N. Virginia)
AWS Secrets Manager (Ohio)
AWS Secrets Manager (Oregon)
AWS Security Hub (Montreal)
AWS Security Hub (N. California)
AWS Security Hub (N. Virginia)
AWS Security Hub (Ohio)
AWS Security Hub (Oregon)
AWS Serverless Application Repository (Montreal)
AWS Serverless Application Repository (N. California)
AWS Serverless Application Repository (N. Virginia)
AWS Serverless Application Repository (Ohio)
AWS Serverless Application Repository (Oregon)
AWS Service Catalog (Montreal)
AWS Service Catalog (N. Virginia)
AWS Service Catalog (Ohio)
AWS Service Catalog (Oregon)
AWS Single Sign-On (N. Virginia)
AWS Step Functions (Montreal)
AWS Step Functions (N. California)
AWS Step Functions (N. Virginia)
AWS Step Functions (Ohio)
AWS Step Functions (Oregon)
AWS Storage Gateway (Montreal)
AWS Storage Gateway (N. California)
AWS Storage Gateway (N. Virginia)
AWS Storage Gateway (Ohio)
AWS Storage Gateway (Oregon)
AWS Systems Manager (Montreal)
AWS Systems Manager (N. California)
AWS Systems Manager (N. Virginia)
AWS Systems Manager (Ohio)
AWS Systems Manager (Oregon)
AWS Transfer (Montreal)
AWS Transfer (N. California)
AWS Transfer (N. Virginia)
AWS Transfer (Ohio)
AWS Transfer (Oregon)
AWS Transit Gateway (Montreal)
AWS Transit Gateway (N. California)
AWS Transit Gateway (N. Virginia)
AWS Transit Gateway (Ohio)
AWS Transit Gateway (Oregon)
AWS VPCE PrivateLink (Montreal)
AWS VPCE PrivateLink (N. California)
AWS VPCE PrivateLink (N. Virginia)
AWS VPCE PrivateLink (Ohio)
AWS VPCE PrivateLink (Oregon)
AWS WAF
AWS X-Ray (Montreal)
AWS X-Ray (N. California)
AWS X-Ray (N. Virginia)
AWS X-Ray (Ohio)
AWS X-Ray (Oregon)
 
Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Amazon API Gateway (Sao Paulo)
Amazon Chime
Amazon CloudFront
Amazon CloudSearch (Sao Paulo)
Amazon CloudWatch (Sao Paulo)
Amazon Data Lifecycle Manager (Sao Paulo)
Amazon DynamoDB (Sao Paulo)
EC2 (Sao Paulo)
Amazon ECR (Sao Paulo)
Amazon ECS (Sao Paulo)
ELB (Sao Paulo)
EMR (Sao Paulo)
Amazon ElastiCache (Sao Paulo)
Amazon Elasticsearch Service (Sao Paulo)
Amazon GameLift (Sao Paulo)
Amazon GuardDuty (Sao Paulo)
Amazon Inter-Region VPC Peering
Amazon Kinesis Data Streams (Sao Paulo)
Amazon Kinesis Firehose (Sao Paulo)
Amazon Polly (Sao Paulo)
Amazon Redshift (Sao Paulo)
RDS (Sao Paulo)
Amazon Route 53
Amazon Route 53 Domain Registration
Amazon Route 53 Private DNS (Sao Paulo)
SNS (Sao Paulo)
SQS (Sao Paulo)
S3 (Sao Paulo)
SWF (Sao Paulo)
Amazon SimpleDB (Sao Paulo)
Amazon Transcribe (Sao Paulo)
VPC (Sao Paulo)
Amazon WorkSpaces (Sao Paulo)
Auto Scaling (Sao Paulo)
AWS Batch (Sao Paulo)
AWS Billing Console
AWS Certificate Manager (Sao Paulo)
AWS CloudFormation (Sao Paulo)
AWS CloudTrail (Sao Paulo)
AWS CodeBuild (Sao Paulo)
AWS CodeCommit (Sao Paulo)
AWS CodeDeploy (Sao Paulo)
AWS CodePipeline (Sao Paulo)
AWS Config (Sao Paulo)
AWS DMS (Sao Paulo)
AWS Direct Connect (Sao Paulo)
AWS Directory Service (Sao Paulo)
AWS Elastic Beanstalk (Sao Paulo)
AWS Elemental MediaConvert (Sao Paulo)
AWS Elemental MediaLive (Sao Paulo)
AWS Global Accelerator
AWS IAM
AWS Internet Connectivity (Sao Paulo)
AWS IoT Device Management
AWS Key Management Service (Sao Paulo)
AWS Lambda (Sao Paulo)
AWS Management Console
AWS Marketplace
AWS NAT Gateway (Sao Paulo)
AWS OpsWorks Stacks (Sao Paulo)
AWS Organizations
AWS Resource Groups
Resource Tagging (Sao Paulo)
AWS Secrets Manager (Sao Paulo)
AWS Security Hub (Sao Paulo)
AWS Serverless Application Repository (Sao Paulo)
AWS Step Functions (Sao Paulo)
AWS Storage Gateway (Sao Paulo)
AWS Systems Manager (Sao Paulo)
AWS VPCE PrivateLink (Sao Paulo)
AWS WAF
AWS X-Ray (Sao Paulo)
 
Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Amazon API Gateway (Frankfurt)
Amazon API Gateway (Ireland)
Amazon API Gateway (London)
Amazon API Gateway (Paris)
Amazon API Gateway (Stockholm)
Amazon AppStream 2.0 (Frankfurt)
Amazon AppStream 2.0 (Ireland)
Amazon Athena (Frankfurt)
Amazon Athena (Ireland)
Amazon Athena (London)
Amazon Chime
Amazon Cloud Directory (Frankfurt)
Amazon Cloud Directory (Ireland)
Amazon Cloud Directory (London)
Amazon CloudFront
Amazon CloudSearch (Frankfurt)
Amazon CloudSearch (Ireland)
Amazon CloudWatch (Frankfurt)
Amazon CloudWatch (Ireland)
Amazon CloudWatch (London)
Amazon CloudWatch (Paris)
Amazon CloudWatch (Stockholm)
Amazon Cognito (Frankfurt)
Amazon Cognito (Ireland)
Amazon Cognito (London)
Amazon Comprehend (Frankfurt)
Amazon Comprehend (Ireland)
Amazon Comprehend (London)
Amazon Comprehend Medical (Ireland)
Amazon Connect (Frankfurt)
Amazon Data Lifecycle Manager (Frankfurt)
Amazon Data Lifecycle Manager (Ireland)
Amazon Data Lifecycle Manager (London)
Amazon Data Lifecycle Manager (Paris)
Amazon DocumentDB (Ireland)
Amazon DynamoDB (Frankfurt)
Amazon DynamoDB (Ireland)
Amazon DynamoDB (London)
Amazon DynamoDB (Paris)
Amazon DynamoDB (Stockholm)
Amazon DynamoDB Accelerator (DAX) (Ireland)
EC2 (Frankfurt)
EC2 (Ireland)
EC2 (London)
EC2 (Paris)
EC2 (Stockholm)
Amazon ECR (Frankfurt)
Amazon ECR (Ireland)
Amazon ECR (London)
Amazon ECR (Stockholm)
Amazon ECS (Frankfurt)
Amazon ECS (Ireland)
Amazon ECS (London)
Amazon ECS (Stockholm)
Amazon Elastic Container Service for Kubernetes (London)
Amazon Elastic Container Service for Kubernetes (Paris)
Amazon Elastic Container Service for Kubernetes (Stockholm)
Amazon Elastic File System (Frankfurt)
Amazon Elastic File System (Ireland)
Amazon Elastic File System (London)
ELB (Frankfurt)
ELB (Ireland)
ELB (London)
ELB (Paris)
ELB (Stockholm)
EMR (Frankfurt)
EMR (Ireland)
EMR (London)
EMR (Paris)
EMR (Stockholm)
Amazon Elastic Transcoder (Ireland)
Amazon ElastiCache (Frankfurt)
Amazon ElastiCache (Ireland)
Amazon ElastiCache (London)
Amazon ElastiCache (Paris)
Amazon ElastiCache (Stockholm)
Amazon Elasticsearch Service (Frankfurt)
Amazon Elasticsearch Service (Ireland)
Amazon Elasticsearch Service (London)
Amazon Elasticsearch Service (Paris)
Amazon Elasticsearch Service (Stockholm)
Amazon FreeRTOS (Frankfurt)
Amazon FreeRTOS (Ireland)
Amazon FreeRTOS (London)
Amazon FSx (Ireland)
Amazon GameLift (Frankfurt)
Amazon GameLift (Ireland)
Amazon GameLift (London)
Amazon Glacier (Frankfurt)
Amazon Glacier (Ireland)
Amazon Glacier (London)
Amazon Glacier (Paris)
Amazon Glacier (Stockholm)
Amazon GuardDuty (Frankfurt)
Amazon GuardDuty (Ireland)
Amazon GuardDuty (London)
Amazon Inspector (Frankfurt)
Amazon Inspector (Ireland)
Amazon Inter-Region VPC Peering
Amazon Kinesis Analytics (Ireland)
Amazon Kinesis Data Streams (Frankfurt)
Amazon Kinesis Data Streams (Ireland)
Amazon Kinesis Data Streams (London)
Amazon Kinesis Data Streams (Paris)
Amazon Kinesis Data Streams (Stockholm)
Amazon Kinesis Firehose (Frankfurt)
Amazon Kinesis Firehose (Ireland)
Amazon Kinesis Firehose (London)
Amazon Kinesis Firehose (Paris)
Amazon Kinesis Video Streams (Frankfurt)
Amazon Kinesis Video Streams (Ireland)
Amazon Lex (Ireland)
Amazon Lightsail (Frankfurt)
Amazon Lightsail (Ireland)
Amazon Lightsail (London)
Amazon Lightsail (Paris)
Amazon Machine Learning (Ireland)
Amazon MQ (Frankfurt)
Amazon MQ (Ireland)
Amazon MQ (London)
Amazon Neptune (Ireland)
Amazon Neptune (London)
Amazon Polly (Frankfurt)
Amazon Polly (Ireland)
Amazon Polly (London)
Amazon Polly (Paris)
Amazon Redshift (Frankfurt)
Amazon Redshift (Ireland)
Amazon Redshift (London)
Amazon Redshift (Paris)
Amazon Redshift (Stockholm)
Amazon Rekognition (Ireland)
RDS (Frankfurt)
RDS (Ireland)
RDS (London)
RDS (Paris)
RDS (Stockholm)
Amazon Route 53
Amazon Route 53 Domain Registration
Amazon Route 53 Private DNS (Frankfurt)
Amazon Route 53 Private DNS (Ireland)
Amazon Route 53 Private DNS (London)
Amazon Route 53 Private DNS (Paris)
Amazon Route 53 Private DNS (Stockholm)
Amazon Route 53 Resolver (Ireland)
Amazon SageMaker (Frankfurt)
Amazon SageMaker (Ireland)
Amazon Simple Email Service (Ireland)
SNS (Frankfurt)
SNS (Ireland)
SNS (London)
SNS (Paris)
SNS (Stockholm)
SQS (Frankfurt)
SQS (Ireland)
SQS (London)
SQS (Paris)
SQS (Stockholm)
S3 (Frankfurt)
S3 (Ireland)
S3 (London)
S3 (Paris)
S3 (Stockholm)
SWF (Frankfurt)
SWF (Ireland)
SWF (London)
SWF (Paris)
SWF (Stockholm)
Amazon SimpleDB (Ireland)
Amazon Sumerian (Ireland)
Amazon Sumerian (London)
Amazon Transcribe (Ireland)
Amazon Transcribe (London)
Amazon Transcribe (Paris)
Amazon Translate (Ireland)
VPC (Frankfurt)
VPC (Ireland)
VPC (London)
VPC (Paris)
VPC (Stockholm)
Amazon WorkDocs (Ireland)
Amazon Worklink (Ireland)
Amazon WorkMail (Ireland)
Amazon WorkSpaces (Frankfurt)
Amazon WorkSpaces (Ireland)
Amazon WorkSpaces (London)
Auto Scaling (Frankfurt)
Auto Scaling (Ireland)
Auto Scaling (London)
Auto Scaling (Paris)
Auto Scaling (Stockholm)
AWS AppSync (Frankfurt)
AWS AppSync (Ireland)
AWS AppSync (London)
AWS Backup (Ireland)
AWS Batch (Frankfurt)
AWS Batch (Ireland)
AWS Batch (London)
AWS Batch (Paris)
AWS Batch (Stockholm)
AWS Billing Console
AWS Certificate Manager (Frankfurt)
AWS Certificate Manager (Ireland)
AWS Certificate Manager (London)
AWS Certificate Manager (Paris)
AWS Certificate Manager (Stockholm)
AWS Client VPN (Ireland)
AWS Cloud Map (Frankfurt)
AWS Cloud Map (Ireland)
AWS Cloud Map (London)
AWS Cloud Map (Paris)
AWS Cloud9 (Ireland)
AWS CloudFormation (Frankfurt)
AWS CloudFormation (Ireland)
AWS CloudFormation (London)
AWS CloudFormation (Paris)
AWS CloudFormation (Stockholm)
AWS CloudHSM (Frankfurt)
AWS CloudHSM (Ireland)
AWS CloudTrail (Frankfurt)
AWS CloudTrail (Ireland)
AWS CloudTrail (London)
AWS CloudTrail (Paris)
AWS CloudTrail (Stockholm)
AWS CodeBuild (Frankfurt)
AWS CodeBuild (Ireland)
AWS CodeBuild (London)
AWS CodeBuild (Paris)
AWS CodeCommit (Frankfurt)
AWS CodeCommit (Ireland)
AWS CodeCommit (London)
AWS CodeDeploy (Frankfurt)
AWS CodeDeploy (Ireland)
AWS CodeDeploy (London)
AWS CodeDeploy (Paris)
AWS CodeDeploy (Stockholm)
AWS CodePipeline (Frankfurt)
AWS CodePipeline (Ireland)
AWS CodePipeline (London)
AWS CodeStar (Frankfurt)
AWS CodeStar (Ireland)
AWS CodeStar (London)
AWS Config (Frankfurt)
AWS Config (Ireland)
AWS Config (London)
AWS Config (Paris)
AWS Config (Stockholm)
AWS Control Tower (Ireland)
AWS Data Pipeline (Ireland)
AWS DMS (Frankfurt)
AWS DMS (Ireland)
AWS DMS (London)
AWS DMS (Paris)
AWS DMS (Stockholm)
AWS DataSync (Frankfurt)
AWS DataSync (Ireland)
AWS Direct Connect (Frankfurt)
AWS Direct Connect (Ireland)
AWS Direct Connect (London)
AWS Direct Connect (Paris)
AWS Direct Connect (Stockholm)
AWS Directory Service (Frankfurt)
AWS Directory Service (Ireland)
AWS Directory Service (London)
AWS Elastic Beanstalk (Frankfurt)
AWS Elastic Beanstalk (Ireland)
AWS Elastic Beanstalk (London)
AWS Elastic Beanstalk (Paris)
AWS Elastic Beanstalk (Stockholm)
AWS Elemental MediaConnect (Frankfurt)
AWS Elemental MediaConnect (Ireland)
AWS Elemental MediaConvert (Frankfurt)
AWS Elemental MediaConvert (Ireland)
AWS Elemental MediaConvert (London)
AWS Elemental MediaLive (Frankfurt)
AWS Elemental MediaLive (Ireland)
AWS Elemental MediaPackage (Ireland)
AWS Elemental MediaStore (Frankfurt)
AWS Elemental MediaStore (Ireland)
AWS Elemental MediaTailor (Ireland)
AWS Firewall Manager (Frankfurt)
AWS Firewall Manager (Ireland)
AWS Global Accelerator
AWS Glue (Frankfurt)
AWS Glue (Ireland)
AWS Glue (London)
AWS Glue (Paris)
AWS Greengrass (Frankfurt)
AWS Greengrass (Ireland)
AWS IAM
AWS Import/Export
AWS Internet Connectivity (Frankfurt)
AWS Internet Connectivity (Ireland)
AWS Internet Connectivity (London)
AWS Internet Connectivity (Paris)
AWS IoT (Frankfurt)
AWS IoT (Ireland)
AWS IoT (London)
AWS IoT 1-Click (Frankfurt)
AWS IoT 1-Click (Ireland)
AWS IoT 1-Click (London)
AWS IoT Analytics (Frankfurt)
AWS IoT Analytics (Ireland)
AWS IoT Device Defender (Frankfurt)
AWS IoT Device Defender (Ireland)
AWS IoT Device Defender (London)
AWS IoT Device Management
AWS Key Management Service (Frankfurt)
AWS Key Management Service (Ireland)
AWS Key Management Service (London)
AWS Key Management Service (Paris)
AWS Key Management Service (Stockholm)
AWS Lambda (Frankfurt)
AWS Lambda (Ireland)
AWS Lambda (London)
AWS Lambda (Paris)
AWS Lambda (Stockholm)
AWS License Manager (Frankfurt)
AWS License Manager (Ireland)
AWS License Manager (London)
AWS Management Console
AWS Marketplace
AWS NAT Gateway (Frankfurt)
AWS NAT Gateway (Ireland)
AWS NAT Gateway (London)
AWS NAT Gateway (Paris)
OpsWorks CM (Frankfurt)
OpsWorks CM (Ireland)
AWS OpsWorks for Puppet Enterprise (Frankfurt)
AWS OpsWorks for Puppet Enterprise (Ireland)
AWS OpsWorks Stacks (Frankfurt)
AWS OpsWorks Stacks (Ireland)
AWS OpsWorks Stacks (London)
AWS OpsWorks Stacks (Paris)
AWS Organizations
AWS QuickSight (Ireland)
AWS Resource Access Manager (Frankfurt)
AWS Resource Access Manager (Ireland)
AWS Resource Access Manager (London)
AWS Resource Access Manager (Paris)
AWS Resource Groups
Resource Tagging (Frankfurt)
Resource Tagging (Ireland)
Resource Tagging (London)
Resource Tagging (Paris)
Resource Tagging (Stockholm)
AWS RoboMaker (Ireland)
AWS Secrets Manager (Frankfurt)
AWS Secrets Manager (Ireland)
AWS Secrets Manager (London)
AWS Security Hub (Frankfurt)
AWS Security Hub (Ireland)
AWS Security Hub (London)
AWS Security Hub (Paris)
AWS Serverless Application Repository (Frankfurt)
AWS Serverless Application Repository (Ireland)
AWS Serverless Application Repository (London)
AWS Service Catalog (Frankfurt)
AWS Service Catalog (Ireland)
AWS Service Catalog (London)
AWS Service Catalog (Paris)
AWS Step Functions (Frankfurt)
AWS Step Functions (Ireland)
AWS Step Functions (London)
AWS Step Functions (Paris)
AWS Step Functions (Stockholm)
AWS Storage Gateway (Frankfurt)
AWS Storage Gateway (Ireland)
AWS Storage Gateway (London)
AWS Storage Gateway (Paris)
AWS Storage Gateway (Stockholm)
AWS Systems Manager (Frankfurt)
AWS Systems Manager (Ireland)
AWS Systems Manager (London)
AWS Systems Manager (Stockholm)
AWS Transfer (Frankfurt)
AWS Transfer (Ireland)
AWS Transfer (London)
AWS Transfer (Paris)
AWS Transit Gateway (Frankfurt)
AWS Transit Gateway (Ireland)
AWS Transit Gateway (London)
AWS Transit Gateway (Paris)
AWS VPCE PrivateLink (Frankfurt)
AWS VPCE PrivateLink (Ireland)
AWS VPCE PrivateLink (Paris)
AWS WAF
AWS X-Ray (Frankfurt)
AWS X-Ray (Ireland)
AWS X-Ray (London)
AWS X-Ray (Stockholm)
 
Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Amazon API Gateway (Mumbai)
Amazon API Gateway (Seoul)
Amazon API Gateway (Singapore)
Amazon API Gateway (Sydney)
Amazon API Gateway (Tokyo)
Amazon AppStream 2.0 (Seoul)
Amazon AppStream 2.0 (Singapore)
Amazon AppStream 2.0 (Sydney)
Amazon AppStream 2.0 (Tokyo)
Amazon Athena (Mumbai)
Amazon Athena (Seoul)
Amazon Athena (Singapore)
Amazon Athena (Sydney)
Amazon Athena (Tokyo)
Amazon Chime
Amazon Cloud Directory (Singapore)
Amazon Cloud Directory (Sydney)
Amazon CloudFront
Amazon CloudSearch (Seoul)
Amazon CloudSearch (Singapore)
Amazon CloudSearch (Sydney)
Amazon CloudSearch (Tokyo)
Amazon CloudWatch (Mumbai)
Amazon CloudWatch (Osaka-Local)
Amazon CloudWatch (Seoul)
Amazon CloudWatch (Singapore)
Amazon CloudWatch (Sydney)
Amazon CloudWatch (Tokyo)
Amazon Cognito (Mumbai)
Amazon Cognito (Seoul)
Amazon Cognito (Singapore)
Amazon Cognito (Sydney)
Amazon Cognito (Tokyo)
Amazon Comprehend (Singapore)
Amazon Comprehend (Sydney)
Amazon Connect (Sydney)
Amazon Connect (Tokyo)
Amazon Data Lifecycle Manager (Mumbai)
Amazon Data Lifecycle Manager (Seoul)
Amazon Data Lifecycle Manager (Singapore)
Amazon Data Lifecycle Manager (Sydney)
Amazon Data Lifecycle Manager (Tokyo)
Amazon DynamoDB (Mumbai)
Amazon DynamoDB (Osaka-Local)
Amazon DynamoDB (Seoul)
Amazon DynamoDB (Singapore)
Amazon DynamoDB (Sydney)
Amazon DynamoDB (Tokyo)
Amazon DynamoDB Accelerator (DAX) (Singapore)
Amazon DynamoDB Accelerator (DAX) (Sydney)
Amazon DynamoDB Accelerator (DAX) (Tokyo)
EC2 (Mumbai)
EC2 (Osaka-Local)
EC2 (Seoul)
EC2 (Singapore)
EC2 (Sydney)
EC2 (Tokyo)
Amazon ECR (Mumbai)
Amazon ECR (Seoul)
Amazon ECR (Singapore)
Amazon ECR (Sydney)
Amazon ECR (Tokyo)
Amazon ECS (Mumbai)
Amazon ECS (Seoul)
Amazon ECS (Singapore)
Amazon ECS (Sydney)
Amazon ECS (Tokyo)
Amazon Elastic Container Service for Kubernetes (Mumbai)
Amazon Elastic File System (Seoul)
Amazon Elastic File System (Singapore)
Amazon Elastic File System (Sydney)
Amazon Elastic File System (Tokyo)
ELB (Mumbai)
ELB (Osaka-Local)
ELB (Seoul)
ELB (Singapore)
ELB (Sydney)
ELB (Tokyo)
EMR (Mumbai)
EMR (Osaka-Local)
EMR (Seoul)
EMR (Singapore)
EMR (Sydney)
EMR (Tokyo)
Amazon Elastic Transcoder (Mumbai)
Amazon Elastic Transcoder (Singapore)
Amazon Elastic Transcoder (Sydney)
Amazon Elastic Transcoder (Tokyo)
Amazon ElastiCache (Mumbai)
Amazon ElastiCache (Osaka-Local)
Amazon ElastiCache (Seoul)
Amazon ElastiCache (Singapore)
Amazon ElastiCache (Sydney)
Amazon ElastiCache (Tokyo)
Amazon Elasticsearch Service (Mumbai)
Amazon Elasticsearch Service (Seoul)
Amazon Elasticsearch Service (Singapore)
Amazon Elasticsearch Service (Sydney)
Amazon Elasticsearch Service (Tokyo)
Amazon FreeRTOS (Sydney)
Amazon FreeRTOS (Tokyo)
Amazon GameLift (Mumbai)
Amazon GameLift (Seoul)
Amazon GameLift (Singapore)
Amazon GameLift (Sydney)
Amazon GameLift (Tokyo)
Amazon Glacier (Mumbai)
Amazon Glacier (Osaka-Local)
Amazon Glacier (Seoul)
Amazon Glacier (Singapore)
Amazon Glacier (Sydney)
Amazon Glacier (Tokyo)
Amazon GuardDuty (Mumbai)
Amazon GuardDuty (Seoul)
Amazon GuardDuty (Singapore)
Amazon GuardDuty (Sydney)
Amazon GuardDuty (Tokyo)
Amazon Inspector (Mumbai)
Amazon Inspector (Seoul)
Amazon Inspector (Sydney)
Amazon Inspector (Tokyo)
Amazon Inter-Region VPC Peering
Amazon Kinesis Data Streams (Mumbai)
Amazon Kinesis Data Streams (Osaka-Local)
Amazon Kinesis Data Streams (Seoul)
Amazon Kinesis Data Streams (Singapore)
Amazon Kinesis Data Streams (Sydney)
Amazon Kinesis Data Streams (Tokyo)
Amazon Kinesis Firehose (Mumbai)
Amazon Kinesis Firehose (Seoul)
Amazon Kinesis Firehose (Singapore)
Amazon Kinesis Firehose (Sydney)
Amazon Kinesis Firehose (Tokyo)
Amazon Kinesis Video Streams (Tokyo)
Amazon Lightsail (Mumbai)
Amazon Lightsail (Seoul)
Amazon Lightsail (Singapore)
Amazon Lightsail (Sydney)
Amazon Lightsail (Tokyo)
Amazon MQ (Seoul)
Amazon MQ (Singapore)
Amazon MQ (Sydney)
Amazon MQ (Tokyo)
Amazon Polly (Mumbai)
Amazon Polly (Seoul)
Amazon Polly (Singapore)
Amazon Polly (Sydney)
Amazon Polly (Tokyo)
Amazon Redshift (Mumbai)
Amazon Redshift (Osaka-Local)
Amazon Redshift (Seoul)
Amazon Redshift (Singapore)
Amazon Redshift (Sydney)
Amazon Redshift (Tokyo)
Amazon Rekognition (Sydney)
Amazon Rekognition (Tokyo)
RDS (Mumbai)
RDS (Osaka-Local)
RDS (Seoul)
RDS (Singapore)
RDS (Sydney)
RDS (Tokyo)
Amazon Route 53
Amazon Route 53 Domain Registration
Amazon Route 53 Private DNS (Mumbai)
Amazon Route 53 Private DNS (Osaka-Local)
Amazon Route 53 Private DNS (Seoul)
Amazon Route 53 Private DNS (Singapore)
Amazon Route 53 Private DNS (Sydney)
Amazon Route 53 Private DNS (Tokyo)
Amazon Route 53 Resolver (Singapore)
Amazon Route 53 Resolver (Sydney)
Amazon Route 53 Resolver (Tokyo)
Amazon SageMaker (Seoul)
Amazon SageMaker (Sydney)
Amazon SageMaker (Tokyo)
SNS (Mumbai)
SNS (Osaka-Local)
SNS (Seoul)
SNS (Singapore)
SNS (Sydney)
SNS (Tokyo)
SQS (Mumbai)
SQS (Osaka-Local)
SQS (Seoul)
SQS (Singapore)
SQS (Sydney)
SQS (Tokyo)
S3 (Mumbai)
S3 (Osaka-Local)
S3 (Seoul)
S3 (Singapore)
S3 (Sydney)
S3 (Tokyo)
SWF (Mumbai)
SWF (Osaka-Local)
SWF (Seoul)
SWF (Singapore)
SWF (Sydney)
SWF (Tokyo)
Amazon SimpleDB (Singapore)
Amazon SimpleDB (Sydney)
Amazon SimpleDB (Tokyo)
Amazon Sumerian (Sydney)
Amazon Transcribe (Mumbai)
Amazon Transcribe (Singapore)
Amazon Transcribe (Sydney)
VPC (Mumbai)
VPC (Osaka-Local)
VPC (Seoul)
VPC (Singapore)
VPC (Sydney)
VPC (Tokyo)
Amazon WorkDocs (Singapore)
Amazon WorkDocs (Sydney)
Amazon WorkDocs (Tokyo)
Amazon WorkSpaces (Seoul)
Amazon WorkSpaces (Singapore)
Amazon WorkSpaces (Sydney)
Amazon WorkSpaces (Tokyo)
Auto Scaling (Mumbai)
Auto Scaling (Osaka-Local)
Auto Scaling (Seoul)
Auto Scaling (Singapore)
Auto Scaling (Sydney)
Auto Scaling (Tokyo)
AWS AppSync (Mumbai)
AWS AppSync (Seoul)
AWS AppSync (Singapore)
AWS AppSync (Sydney)
AWS AppSync (Tokyo)
AWS Batch (Mumbai)
AWS Batch (Seoul)
AWS Batch (Singapore)
AWS Batch (Sydney)
AWS Batch (Tokyo)
AWS Billing Console
AWS Certificate Manager (Mumbai)
AWS Certificate Manager (Osaka-Local)
AWS Certificate Manager (Seoul)
AWS Certificate Manager (Singapore)
AWS Certificate Manager (Sydney)
AWS Certificate Manager (Tokyo)
AWS Cloud Map (Mumbai)
AWS Cloud Map (Seoul)
AWS Cloud Map (Singapore)
AWS Cloud Map (Sydney)
AWS Cloud Map (Tokyo)
AWS Cloud9 (Singapore)
AWS CloudFormation (Mumbai)
AWS CloudFormation (Osaka-Local)
AWS CloudFormation (Seoul)
AWS CloudFormation (Singapore)
AWS CloudFormation (Sydney)
AWS CloudFormation (Tokyo)
AWS CloudHSM (Singapore)
AWS CloudHSM (Sydney)
AWS CloudHSM (Tokyo)
AWS CloudTrail (Mumbai)
AWS CloudTrail (Osaka-Local)
AWS CloudTrail (Seoul)
AWS CloudTrail (Singapore)
AWS CloudTrail (Sydney)
AWS CloudTrail (Tokyo)
AWS CodeBuild (Mumbai)
AWS CodeBuild (Seoul)
AWS CodeBuild (Singapore)
AWS CodeBuild (Sydney)
AWS CodeBuild (Tokyo)
AWS CodeCommit (Mumbai)
AWS CodeCommit (Seoul)
AWS CodeCommit (Singapore)
AWS CodeCommit (Sydney)
AWS CodeCommit (Tokyo)
AWS CodeDeploy (Mumbai)
AWS CodeDeploy (Osaka-Local)
AWS CodeDeploy (Seoul)
AWS CodeDeploy (Singapore)
AWS CodeDeploy (Sydney)
AWS CodeDeploy (Tokyo)
AWS CodePipeline (Mumbai)
AWS CodePipeline (Seoul)
AWS CodePipeline (Singapore)
AWS CodePipeline (Sydney)
AWS CodePipeline (Tokyo)
AWS CodeStar (Seoul)
AWS CodeStar (Singapore)
AWS CodeStar (Sydney)
AWS CodeStar (Tokyo)
AWS Config (Mumbai)
AWS Config (Seoul)
AWS Config (Singapore)
AWS Config (Sydney)
AWS Config (Tokyo)
AWS Data Pipeline (Sydney)
AWS Data Pipeline (Tokyo)
AWS DMS (Mumbai)
AWS DMS (Seoul)
AWS DMS (Singapore)
AWS DMS (Sydney)
AWS DMS (Tokyo)
AWS DataSync (Seoul)
AWS DataSync (Singapore)
AWS DataSync (Sydney)
AWS DataSync (Tokyo)
AWS Direct Connect (Mumbai)
AWS Direct Connect (Seoul)
AWS Direct Connect (Singapore)
AWS Direct Connect (Sydney)
AWS Direct Connect (Tokyo)
AWS Directory Service (Mumbai)
AWS Directory Service (Seoul)
AWS Directory Service (Singapore)
AWS Directory Service (Sydney)
AWS Directory Service (Tokyo)
AWS Elastic Beanstalk (Mumbai)
AWS Elastic Beanstalk (Osaka-Local)
AWS Elastic Beanstalk (Seoul)
AWS Elastic Beanstalk (Singapore)
AWS Elastic Beanstalk (Sydney)
AWS Elastic Beanstalk (Tokyo)
AWS Elemental MediaConnect (Singapore)
AWS Elemental MediaConnect (Sydney)
AWS Elemental MediaConnect (Tokyo)
AWS Elemental MediaConvert (Mumbai)
AWS Elemental MediaConvert (Seoul)
AWS Elemental MediaConvert (Singapore)
AWS Elemental MediaConvert (Sydney)
AWS Elemental MediaConvert (Tokyo)
AWS Elemental MediaLive (Mumbai)
AWS Elemental MediaLive (Seoul)
AWS Elemental MediaLive (Singapore)
AWS Elemental MediaLive (Tokyo)
AWS Elemental MediaPackage (Singapore)
AWS Elemental MediaPackage (Sydney)
AWS Elemental MediaPackage (Tokyo)
AWS Elemental MediaStore (Sydney)
AWS Elemental MediaStore (Tokyo)
AWS Elemental MediaTailor (Singapore)
AWS Elemental MediaTailor (Sydney)
AWS Elemental MediaTailor (Tokyo)
AWS Firewall Manager (Sydney)
AWS Firewall Manager (Tokyo)
AWS Global Accelerator
AWS Glue (Mumbai)
AWS Glue (Seoul)
AWS Glue (Singapore)
AWS Glue (Sydney)
AWS Glue (Tokyo)
AWS Greengrass (Sydney)
AWS Greengrass (Tokyo)
AWS IAM
AWS Import/Export
AWS Internet Connectivity (Mumbai)
AWS Internet Connectivity (Seoul)
AWS Internet Connectivity (Singapore)
AWS Internet Connectivity (Sydney)
AWS Internet Connectivity (Tokyo)
AWS IoT (Seoul)
AWS IoT (Singapore)
AWS IoT (Sydney)
AWS IoT (Tokyo)
AWS IoT 1-Click (Tokyo)
AWS IoT Analytics (Tokyo)
AWS IoT Device Defender (Seoul)
AWS IoT Device Defender (Singapore)
AWS IoT Device Defender (Sydney)
AWS IoT Device Defender (Tokyo)
AWS IoT Device Management
AWS Key Management Service (Mumbai)
AWS Key Management Service (Osaka-Local)
AWS Key Management Service (Seoul)
AWS Key Management Service (Singapore)
AWS Key Management Service (Sydney)
AWS Key Management Service (Tokyo)
AWS Lambda (Mumbai)
AWS Lambda (Seoul)
AWS Lambda (Singapore)
AWS Lambda (Sydney)
AWS Lambda (Tokyo)
AWS License Manager (Mumbai)
AWS License Manager (Seoul)
AWS License Manager (Singapore)
AWS License Manager (Sydney)
AWS License Manager (Tokyo)
AWS Management Console
AWS Marketplace
AWS NAT Gateway (Mumbai)
AWS NAT Gateway (Seoul)
AWS NAT Gateway (Singapore)
AWS NAT Gateway (Sydney)
AWS NAT Gateway (Tokyo)
OpsWorks CM (Singapore)
OpsWorks CM (Sydney)
OpsWorks CM (Tokyo)
AWS OpsWorks for Puppet Enterprise (Singapore)
AWS OpsWorks for Puppet Enterprise (Sydney)
AWS OpsWorks for Puppet Enterprise (Tokyo)
AWS OpsWorks Stacks (Mumbai)
AWS OpsWorks Stacks (Seoul)
AWS OpsWorks Stacks (Singapore)
AWS OpsWorks Stacks (Sydney)
AWS OpsWorks Stacks (Tokyo)
AWS Organizations
AWS QuickSight (Singapore)
AWS QuickSight (Sydney)
AWS QuickSight (Tokyo)
AWS Resource Access Manager (Mumbai)
AWS Resource Access Manager (Seoul)
AWS Resource Access Manager (Singapore)
AWS Resource Access Manager (Sydney)
AWS Resource Access Manager (Tokyo)
AWS Resource Groups
Resource Tagging (Mumbai)
Resource Tagging (Osaka-Local)
Resource Tagging (Seoul)
Resource Tagging (Singapore)
Resource Tagging (Sydney)
Resource Tagging (Tokyo)
AWS Secrets Manager (Mumbai)
AWS Secrets Manager (Seoul)
AWS Secrets Manager (Singapore)
AWS Secrets Manager (Sydney)
AWS Secrets Manager (Tokyo)
AWS Security Hub (Mumbai)
AWS Security Hub (Seoul)
AWS Security Hub (Singapore)
AWS Security Hub (Sydney)
AWS Security Hub (Tokyo)
AWS Serverless Application Repository (Mumbai)
AWS Serverless Application Repository (Seoul)
AWS Serverless Application Repository (Singapore)
AWS Serverless Application Repository (Sydney)
AWS Serverless Application Repository (Tokyo)
AWS Service Catalog (Singapore)
AWS Service Catalog (Sydney)
AWS Service Catalog (Tokyo)
AWS Step Functions (Seoul)
AWS Step Functions (Singapore)
AWS Step Functions (Sydney)
AWS Step Functions (Tokyo)
AWS Storage Gateway (Mumbai)
AWS Storage Gateway (Seoul)
AWS Storage Gateway (Singapore)
AWS Storage Gateway (Sydney)
AWS Storage Gateway (Tokyo)
AWS Systems Manager (Mumbai)
AWS Systems Manager (Seoul)
AWS Systems Manager (Singapore)
AWS Systems Manager (Sydney)
AWS Systems Manager (Tokyo)
AWS Transfer (Seoul)
AWS Transfer (Singapore)
AWS Transfer (Sydney)
AWS Transfer (Tokyo)
AWS Transit Gateway (Mumbai)
AWS Transit Gateway (Seoul)
AWS Transit Gateway (Singapore)
AWS Transit Gateway (Sydney)
AWS Transit Gateway (Tokyo)
AWS VPCE PrivateLink (Mumbai)
AWS VPCE PrivateLink (Osaka-Local)
AWS VPCE PrivateLink (Seoul)
AWS VPCE PrivateLink (Singapore)
AWS VPCE PrivateLink (Sydney)
AWS VPCE PrivateLink (Tokyo)
AWS WAF
AWS X-Ray (Mumbai)
AWS X-Ray (Seoul)
AWS X-Ray (Singapore)
AWS X-Ray (Sydney)
AWS X-Ray (Tokyo)
 
Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

View post-event summaries


Conditions of Use | Privacy Notice     © 2008-2019 Amazon Web Services LLC or its affiliates. All rights reserved.
          #####EOF##### Amazon Web Services (AWS) – บริการประมวลผลบนระบบคลาวด์

ดูผลิตภัณฑ์ของเรา

การวิเคราะห์
การผสานรวมแอปพลิเคชัน
การประมวลผล
ฐานข้อมูล
เครื่องมือสำหรับ Developer
อินเทอร์เน็ตในทุกสิ่ง
Machine Learning
การจัดการและการควบคุมดูแล
บริการสื่อ
การโยกย้ายและการถ่ายโอนข้อมูล
การสร้างเครือข่ายและการจัดส่งเนื้อหา
การรักษาความปลอดภัย การระบุตัวตน และการปฏิบัติตามข้อกำหนด
พื้นที่จัดเก็บ

ขับเคลื่อนนวัตกรรมของลูกค้า

  • การแปลงโฉมองค์กร
  • การวิเคราะห์เชิงคาดการณ์
  • Machine Learning
  • ไร้เซิร์ฟเวอร์
  • การเล่นเกม
  • แอปพลิเคชันระดับองค์กร
  • การแปลงโฉมองค์กร
  • PI-C1_Logo

    Capital One เปลี่ยนโฉมการธนาคารโดยใช้ AWS

    เรียนรู้วิธีที่ Capital One นำกลยุทธ์ระบบคลาวด์เป็นสำคัญไปใช้กับการศึกษา การวางแผนระยะยาว และการมุ่งเน้นความต้องการของลูกค้าอย่างต่อเนื่อง
    เรียนรู้เพิ่มเติม 
    PI-C1_Mobile_Step-1

    มุ่งเน้นไปที่ลูกค้า

    ในปี 2014 Capital One มีความสามารถของระบบคลาวด์ส่วนตัวแบบแรกเริ่ม และยังทำการทดลองกับ AWS อีกด้วย เพื่อที่จะสร้างคุณสมบัติที่ลูกค้าต้องการโดยเร็วที่สุด บริษัทจึงเลือกที่จะหันมาใช้ AWS

    PI-C1_Mobile_Step-2

    ทำส่วนที่ยากก่อน

    การรักษาความปลอดภัยและการปฏิบัติตามกฎระเบียบเป็นสิ่งสำคัญสำหรับ Capital One ในฐานะสถาบันการเงิน เพื่อตอบสนองความต้องการเหล่านี้ Capital One ได้สร้างกรอบความเสี่ยงของระบบคลาวด์และสร้างฟังก์ชันการกำกับดูแลระบบคลาวด์ก่อนที่จะย้ายปริมาณงานไปยัง AWS

    PI-C1_Mobile_Step-3

    การศึกษาเรื่องกุญแจสู่ระบบคลาวด์

    Capital One มอบโปรแกรมการฝึกอบรมระบบคลาวด์แก่วิศวกรที่ทำงานบน AWS โดยตรง รวมถึงผู้ถือผลประโยชน์ร่วมที่ไม่ใช่ด้านเทคนิคที่ต้องสามารถสนับสนุนการดำเนินการประมวลผลบนระบบคลาวด์ ตอนนี้บริษัทอยู่ในอันดับที่สามขององค์กรทั้งหมดทั่วโลกสำหรับจำนวนพนักงานที่มี AWS Certification

    PI-C1_Mobile_Step-4

    ตระหนักถึงประโยชน์ของระบบคลาวด์

    จากการใช้ AWS ทำให้ Capital One สามารถนำผลิตภัณฑ์ใหม่ออกสู่ตลาดได้ในไม่กี่สัปดาห์แทนที่จะใช้เวลาเป็นเดือนหรือปี สามารถใช้ Machine Learning เพื่อปรับปรุงประสบการณ์ของลูกค้าได้ และสามารถดึงดูด Developer และวิศวกรชั้นนำ ทั้งหมดนี้ช่วยให้บริษัทบรรลุเป้าหมายที่สำคัญที่สุดซึ่งก็คือการสร้างประสบการณ์ที่ยอดเยี่ยมให้กับลูกค้า

  • การวิเคราะห์เชิงคาดการณ์
  • F1-Insights-logo-power-by-AWS

    Formula One Group ใช้ Amazon SageMaker เพื่อพัฒนาการแข่งรถ

    เรียนรู้วิธีที่ Formula 1 ใช้ Amazon SageMaker และบริการของ AWS อื่นๆ เพื่อพัฒนาการตัดสินใจเกี่ยวกับการแข่งรถและปรับปรุงประสบการณ์ของแฟนๆ ให้ดียิ่งขึ้น
    เรียนรู้เพิ่มเติม 
    PI-F1-1-mobile-beginning-a-transformation-ending

    เริ่มการเปลี่ยนโฉม

    Formula One Group กำลังเคลื่อนย้ายโครงสร้างพื้นฐานส่วนใหญ่จากศูนย์ข้อมูลภายในองค์กรมาที่ AWS และกำหนดมาตรฐานตามบริการ Machine Learning รวมถึง Amazon SageMaker

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    ใช้ Machine Learning เพื่อพัฒนาการแข่งรถ

    นักวิทยาศาสตร์ข้อมูล Formula 1 กำลังใช้ข้อมูลการแข่งขันที่รวบรวมจากรถแข่งในช่วง 65 ปีที่ผ่านมาเพื่อฝึกอบรมโมเดลการเรียนรู้เชิงลึกเพื่อคาดการณ์การแข่ง และช่วยให้ทีมสามารถปรับปรุงการตัดสินใจในระหว่างการแข่งได้อย่างเหมาะสม โมเดลเหล่านี้สามารถคาดการณ์ได้ว่าเมื่อใดทีมควรนำรถเข้าพิต ระบุเวลาที่เหมาะสมที่สุดในการเปลี่ยนยาง และประเมินประสิทธิภาพของนักขับ

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    ให้แฟนๆ ได้มีส่วนร่วมบนเส้นทางแห่งความสำเร็จ

    Formula 1 จึงใช้บริการสตรีมข้อมูล การวิเคราะห์ และสื่อของ AWS เพื่อให้แฟนๆ กว่า 500 ล้านคนได้รับรู้ถึงข้อมูลเชิงลึกเกี่ยวกับการตัดสินใจของนักขับและประสิทธิภาพของตัวรถ

    PI-F1-4-mobile-building-for-the-future-ending

    สร้างหนทางสู่อนาคต

    เพราะ Formula 1 สามารถรันปริมาณงานในการประมวลผลประสิทธิภาพสูงในสภาพแวดล้อมที่ปรับขนาดได้บน AWS องค์กรจึงสามารถพัฒนานวัตกรรมสำหรับประสบการณ์การแข่งรถ Formula 1 การออกแบบรถยนต์ และอื่นๆ ได้โดยไม่ต้องกังวลเรื่องความจุ

  • Machine Learning
  • Logo_Statcast-AI

    MLB เลือก AWS เป็นผู้ให้บริการ Machine Learning อย่างเป็นทางการ

    เรียนรู้ว่า Professional Baseball League ของอเมริกาใช้ Machine Learning ของ AWS ทำให้สถิติมีความหมายได้อย่างไร
    เรียนรู้เพิ่มเติม 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    รากฐานของการเรียนรู้เชิงลึก

    MLB ได้เก็บรวบรวมข้อมูลเชิงสถิติเกี่ยวกับผู้เล่นและสโมสรของตนมาเป็นเวลาหลายทศวรรษ และในปี 2015 MLB ก็เริ่มใช้ AWS ในการเก็บรวบรวมและเผยแพร่สถิติวันแข่งขันเพื่อปรับปรุงประสบการณ์ของแฟนๆ ให้ดีขึ้น

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    การเพิ่มประสิทธิภาพให้ Developer

    เมื่อใช้ Amazon Sagemaker แล้ว Developer และ Data Scientist ของ MLB ก็สามารถสร้าง ฝึกอบรม และปรับใช้โมเดล Machine Learning ตามต้องการได้อย่างรวดเร็วและง่ายดาย

    PI-MLB-3-Lightening the Load-ending stage

    การลดปริมาณงาน

    โมเดลเหล่านี้ช่วยให้ MLB ลดขั้นตอนที่ต้องดำเนินการด้วยตนเองและใช้เวลามากซึ่งเกี่ยวข้องกับการจัดเก็บบันทึกและสถิติ เช่น การจัดเก็บคะแนน การบันทึกโน้ตการแข่งขัน และการจำแนกพิทช์

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    การปรับการแข่งขันให้เข้ากับแต่ละบุคคล

    MLB วางแผนที่จะประสานงานกับ Amazon ML Solutions Lab ในการปรับปรุง Statcast ต่อไปซึ่งเป็นเทคโนโลยีติดตามข้อมูลที่วิเคราะห์ประสิทธิภาพของผู้เล่น รวมถึงการทดสอบความถูกต้องแม่นยำของการคาดเดาพิทช์และการสร้างประสบการณ์ที่ปรับให้เหมาะกับผู้ชมแต่ละคน

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    โฮมรันด้วยปัญญาประดิษฐ์

    MLB จะสร้างนวัตกรรมต่อไปโดยใช้ปัญญาประดิษฐ์ องค์กรวางแผนที่จะใช้ Amazon Comprehend ในการสร้างโมเดลภาษาที่สามารถสร้างสคริปต์สำหรับการแข่งขันแบบถ่ายทอดสดที่จำลองผู้ประกาศที่มีชื่อเสียง

  • ไร้เซิร์ฟเวอร์
  • Matson-logo

    Matson ดำเนินธุรกิจขนส่งและโลจิสติกส์ทั่วโลกด้วย AWS

    มาเรียนรู้วิธีที่ Matson ใช้ AWS เพื่อขับเคลื่อนนวัตกรรมและบริการลูกค้าระดับโลกและบรรลุเป้าหมายด้านความน่าเชื่อถือในการดำเนินการ ความปลอดภัย และการประหยัดต้นทุนโครงสร้างพื้นฐานด้วยในขณะเดียวกัน
    เรียนรู้เพิ่มเติม 
    PI-Matson-Mobile_Step-1

    การติดตามตู้คอนเทนเนอร์แบบเรียลไทม์

    Matson สร้างแอปพลิเคชันมือถือที่ทำงานได้ดีเยี่ยมสำหรับตู้คอนเทนเนอร์ทั่วโลกซึ่งทำให้ลูกค้าสามารถติดตามการขนส่งสินค้าแบบเรียลไทม์ คุณสมบัติที่เป็นประโยชน์อื่นๆ ในแอปพลิเคชัน ได้แก่ การค้นหาตารางเดินเรือเชิงโต้ตอบ การค้นหาแผนที่ท่าเรือตามตำแหน่ง และฟีดกล้องแบบไลฟ์เกต

    PI-Matson-Mobile_Step-2

    การเข้าถึงอุปกรณ์มือถือ

    อุปกรณ์มือถือทั้งหมดเข้าถึง AWS ผ่านทาง Amazon API Gateway ซึ่งทำให้มีปลายทางที่กำหนดสถานที่ตั้ง Edge พร้อมใช้งานสำหรับเข้าถึงทรัพยากรภายใน Virtual Private Cloud ที่มีอยู่ของ Matson

    PI-Matson-Mobile_Step-3

    การประมวลผลแบบไร้เซิร์ฟเวอร์

    ฟังก์ชันของ AWS Lambda ออกแบบมาให้ใช้รูปแบบไมโครเซอร์วิสและเป็นไปตามแบบในบริบททางธุรกิจทางทะเลเป็นหลัก เช่น ติดตามการขนส่งและตารางเดินเรือ 

    PI-Matson-Mobile_Step-4

    การกำหนดค่าและการจัดเก็บฐานข้อมูล

    Amazon DynamoDB à¸ˆà¸±à¸”การกำหนดค่ารวมถึงการกำหนดค่าคำติชมของผู้ใช้และการแจ้งเตือนคำติชมของผู้ใช้ที่ส่งมาจากอุปกรณ์มือถือ DynamoDB Streams จะทำการแจ้งเตือนแบบเรียลไทม์ไปยังทีมบริการลูกค้าของ Matson 

    PI-Matson-Mobile_Step-5

    การเฝ้าติดตามข้อมูลและการแจ้งเตือน

    ลูกค้าของ Matson เชื่อมั่นในข้อมูลการติดตามตู้คอนเทนเนอร์และสถานะเรือที่แม่นยำและล่าสุด จะสามารถเฝ้าติดตามและแจ้งเตือนเกี่ยวกับเหตุการณ์ของระบบได้โดยใช้ Amazon CloudWatch, Amazon SNS, Amazon SES, AWS Lambda และ CloudWatch Logs 

    PI-Matson-Mobile_Step-6

    แอปพลิเคชันไร้เซิร์ฟเวอร์แบบครบวงจร

    ขณะนี้ Matson สามารถเสนอแอปพลิเคชันไร้เซิร์ฟเวอร์แบบครบวงจรให้แก่ลูกค้าเพื่อช่วยติดตามการขนส่งและไม่มีโครงสร้างพื้นฐานให้ต้องดูแลรักษา

  • การเล่นเกม
  • PI-Epic_Logo_Final
    Epic Games ใช้ AWS เพื่อขับเคลื่อนเกม Fortnite ทั่วโลก
    เรียนรู้ว่า Epic Games ใช้ AWS เพื่อส่ง Fortnite ให้กับผู้เล่นกว่า 200 ล้านคนทั่วโลกได้อย่างไร
    เรียนรู้เพิ่มเติม 
    PI-Epic-Mobile_Step-1

    การสร้างรากฐานบนระบบคลาวด์

    Epic Games ใช้ AWS มาตั้งแต่ปี 2012 และขณะนี้ก็ทำงานบน AWS Cloud ทั้งหมดแล้ว โดยใช้งานกลุ่มเซิร์ฟเวอร์เกมทั่วโลก ระบบแพลตฟอร์มแบ็กเอนด์ ฐานข้อมูล เว็บไซต์ ขั้นตอนการวิเคราะห์ และระบบประมวลผลทั้งหมดบน AWS

    PI-Epic-Mobile_Step-2

    กระแสชั่วข้ามคืน

    ในปี 2017 Epic Games ได้เปิดตัว Fortnite เกมข้ามแพลตฟอร์มแบบผู้เล่นหลายคนซึ่งกลายเป็นกระแสชั่วข้ามคืน ในปีแรก ฐานผู้เล่นของ Fortnite เติบโตขึ้นมากกว่า 100 เท่า เป็น 200 ล้านผู้เล่นทั่วโลก

    PI-Epic-Mobile_Step-3

    ขยายขนาดอย่างไม่หยุดยั้ง

    AWS เป็นส่วนสำคัญในความสำเร็จของFortnite การใช้ AWS ทำให้ Epic Games สามารถจัดกิจกรรมภายในเกมโดยมีผู้เล่นที่ได้รับเชิญหลายร้อยล้านคน โดยไม่ต้องกังวลเกี่ยวกับความจุ ซึ่งสามารถป้อนข้อมูลได้ 125 ล้านเหตุการณ์ต่อนาทีในขั้นตอนการวิเคราะห์ และช่วยจัดการการเติบโตของคลังข้อมูลมากกว่า 5 PB ต่อเดือน

    PI-Epic-Mobile_Step-4

    มอบสุดยอดประสบการณ์การเล่นเกม

    การใช้ AWS ทำให้ Epic Games สามารถปรับปรุงประสบการณ์ของผู้เล่นและนำเสนอเกมและองค์ประกอบเกมใหม่ๆ ที่น่าตื่นเต้นอยู่เสมอ บริษัทวางแผนที่จะขยายการใช้บริการของ AWS ในอนาคต รวมถึง Machine Learning และบริการต่างๆ ที่มีคอนเทนเนอร์

  • แอปพลิเคชันระดับองค์กร
  • BPP_ylw_logo

    BP ช่วยเพิ่มประสิทธิภาพและเพิ่มความคล่องตัวด้านต้นทุนและความรวดเร็วสำหรับแอปสำหรับธุรกิจที่สำคัญ

    ดูว่า BP ช่วยลดความซับซ้อนและทำให้ชุดแอปพลิเคชัน SAP ของคุณทันสมัยขึ้น ปรับปรุงประสบการณ์การใช้งานของผู้ใช้ พร้อมกับเพิ่มความคล่องตัวและเพิ่มประสิทธิภาพได้อย่างไร
    เรียนรู้เพิ่มเติม 
    PI-BP-Mobile_Step-1

    การจัดการแอปสำหรับธุรกิจที่สำคัญ

    องค์กรด้าน IT ของ BP จัดการแอปพลิเคชัน SAP ที่ใช้โดยพนักงานหลายพันคนทั่วโลกสำหรับซัพพลายเชน การจัดหา การเงิน และอื่นๆ 

    PI-BP-Mobile_Step-2

    การปรับปรุงความเร็วและความคล่องตัวของต้นทุน

    เพื่อปรับปรุงความเร็วและเพิ่มความคล่องตัวด้านต้นทุน BP ได้ใช้ Amazon EC2 เพื่อย้ายแอปสำหรับธุรกิจหลักเหล่านี้ไปยังระบบคลาวด์ นอกจากนี้ ทีมยังสร้าง EC2 X1 instance เพื่อเพิ่มขนาดและเพิ่มประสิทธิภาพการวิเคราะห์แบบเรียลไทม์

    PI-BP-Mobile_Step-3

    การเพิ่มประสิทธิภาพ

    ทีมงานสามารถตั้งระบบตามความต้องการได้ภายในไม่กี่ชั่วโมงแทนที่จะเป็นสัปดาห์หรือเป็นเดือน BP ได้รับประสิทธิภาพการทำงานโดยรวมเพิ่มขึ้น ซึงรวมถึงการปรับปรุงความเร็ว 40 เปอร์เซ็นต์สำหรับระบบ ERP ของผลิตภัณฑ์หล่อลื่น 

    PI-BP-Mobile_Step-4

    การรักษาความปลอดภัยข้อมูล

    ในฐานะที่เป็นส่วนหนึ่งของการย้ายระบบคลาวด์ BP กำหนดมาตรฐานความปลอดภัยโดยใช้ AWS Config, AWS Identity and Access Management (IAM), Amazon CloudWatch และ AWS Trusted Advisor มาตรฐานใหม่เหล่านี้ช่วยให้ BP พัฒนากรอบงานความปลอดภัยสำหรับการดำเนินงานด้าน IT ของตนได้

AWSMP_logo_new-RGB

ค้นหา ซื้อ ใช้งาน

AWS Marketplace เป็นแคตตาล็อกดิจิทัลที่มีรายการซอฟต์แวร์จากผู้จำหน่ายซอฟต์แวร์อิสระนับพันรายการ ช่วยให้คุณค้นหา ทดสอบ ซื้อ และปรับใช้ซอฟต์แวร์ที่ทำงานบน AWS ได้อย่างง่ายดาย
เรียนรู้เพิ่มเติม 

สำรวจโซลูชันของเรา

60-machine-learning
สร้างด้วยบริการและแพลตฟอร์มอันทรงพลัง และสนับสนุนกรอบงาน Machine Learning ได้อย่างหลากหลายที่สุดในทุกที่
60-analytics
จัดเก็บ จัดหมวดหมู่ และวิเคราะห์ข้อมูลทั้งหมดอย่างปลอดภัยในพื้นที่เก็บข้อมูลส่วนกลาง
60-IoT
ระบบของอุปกรณ์แพร่หลายที่เชื่อมต่อโลกทางกายภาพกับระบบคลาวด์
60-serverless
สร้างและรันแอปพลิเคชันและบริการโดยไม่ต้องคำนึงถึงเซิร์ฟเวอร์
60-containers
จัดทำแพคเกจและปรับใช้แอปพลิเคชันที่ใช้พื้นที่น้อยและมีสภาพการทำงานของซอฟต์แวร์ที่สม่ำเสมอและเคลื่อนย้ายง่ายสำหรับแอปพลิเคชัน เพื่อให้รันและปรับขนาดได้ทุกที่
60-enterprise
สร้างด้วยชุดบริการที่เสร็จสมบูรณ์ซึ่งออกแบบมาเฉพาะเพื่อตอบสนองความต้องการด้านความปลอดภัย การปฏิบัติตามข้อกำหนด ความเป็นส่วนตัว และการกำกับดูแลที่แตกต่างกันออกไปขององค์กรขนาดใหญ่
60-storage
ตัวเลือกที่ทนทานและคุ้มค่าการลงทุนสำหรับการสำรองข้อมูล การกู้คืนหลังภัยพิบัติ และการเก็บข้อมูลถาวรที่ระดับเพตะไบต์
60-windows-workloads
ความสามารถในการประมวลผลที่ยืดหยุ่นและปรับขนาดได้สำหรับแอปพลิเคชันของ Microsoft จัดการและรักษาความปลอดภัยให้กับปริมาณงานของ Windows ได้อย่างง่ายดาย

วิศวกรรมที่ตอบสนองข้อกำหนดที่เข้มงวดที่สุด

icon-security

ปลอดภัย

ความสามารถด้านความปลอดภัยที่ครอบคลุมเพื่อตอบสนองข้อกำหนดที่เข้มงวดสูงสุด
icon-compliant

ปฏิบัติตามกฎระเบียบ

การควบคุมที่เข้มงวด การตรวจสอบและการให้การรับรองด้านความปลอดภัยที่ครอบคลุม
icon-hybrid

เทคโนโลยีไฮบริด

สร้างสถาปัตยกรรมแบบไฮบริดที่ขยายโครงสร้างพื้นฐานที่คุณมีอยู่แล้วไปสู่ระบบคลาวด์
icon-scalable

ปรับขนาดได้

เข้าถึงมากหรือน้อยได้เท่าที่ต้องการ และปรับเพิ่มลดได้ตามต้องการโดยแจ้งเพียงไม่กี่นาที

เรียนรู้วิธีที่ลูกค้าของเราสร้างบน AWS

เครือข่ายทั่วโลกของภูมิภาค AWS

AWS Cloud ครอบคลุม Availability Zone 61 แห่งใน 20 ภูมิภาคทางภูมิศาสตร์ทั่วโลก พร้อมแผนที่จะเปิดตัวเพิ่มเติมสำหรับ Availability Zone อีก 12 แห่งและอีก 4 ภูมิภาคในบาห์เรน เคปทาวน์ เขตบริหารพิเศษฮ่องกง และมิลาน
2019 Infra Map - PDX
Key_AZ

ภูมิภาคและจำนวน Availability Zone

สหรัฐอเมริกาฝั่งตะวันออก
เวอร์จิเนียเหนือ (6) โอไฮโอ (3)

สหรัฐอเมริกาฝั่งตะวันตก
แคลิฟอร์เนียเหนือ (3), ออริกอน (4)

เอเชียแปซิฟิก
มุมไบ (2), โซล (2), สิงคโปร์ (3), ซิดนีย์ (3), โตเกียว (4), พื้นที่โอซากา (1)

แคนาดา
ตอนกลาง (2)

จีน
ปักกิ่ง (3) หนิงเซี่ย (2)

ยุโรป
แฟรงเฟิร์ต (3), ไอร์แลนด์ (3), ลอนดอน (3), ปารีส (3), สตอกโฮล์ม (3)

อเมริกาใต้
เซาเปาลู (3)

GovCloud (US)
สหรัฐอเมริกาฝั่งตะวันออก (3), à¸ªà¸«à¸£à¸±à¸à¸­à¹€à¸¡à¸£à¸´à¸à¸²à¸à¸±à¹ˆà¸‡à¸•ะวันตก (3)

Key_Coming-Soon

ภูมิภาคใหม่ (เร็วๆ นี้)

บาห์เรน

เคปทาวน์

เขตบริหารพิเศษฮ่องกง

มิลาน

เรียนรู้เพิ่มเติม 
#####EOF##### Amazon Web Services (AWS) – Servizi di cloud computing

Esplora i nostri prodotti

Per l'innovazione dei clienti

  • Trasformazione dell’azienda
  • Analisi predittive
  • Machine learning
  • SERVERLESS
  • Videogiochi
  • APPLICAZIONI AZIENDALI
  • Trasformazione dell’azienda
  • PI-C1_Logo

    Capital One reinventa i servizi bancari con AWS

    Scopri come Capital One ha implementato la sua strategia basata sul cloud attraverso formazione, pianificazione a lungo termine e una cultura centrata sulle necessità dei clienti.
    Ulteriori informazioni 
    PI-C1_Mobile_Step-1

    Concentrarsi sui clienti

    Nel 2014, Capital One muoveva i primi passi nel cloud e i suoi ingegneri stavano già sperimentando AWS. L’obiettivo dell’azienda era quello di produrre le nuove funzionalità richieste dai clienti nel minor tempo possibile. Quindi, ha scelto di adottare AWS.

    PI-C1_Mobile_Step-2

    Prima il dovere

    Poiché Capital One è un’istituzione che si occupa di servizi finanziari, la sicurezza e la conformità sono aspetti essenziali all’interno della sua organizzazione. Per rispondere a queste necessità, Capital One ha realizzato un framework contro i rischi nel cloud e ha stabilito una funzione di governance per il cloud prima di migrare qualsiasi carico di lavoro su AWS.

    PI-C1_Mobile_Step-3

    Formazione: la chiave per il cloud

    Capital One offre un programma di formazione sul cloud agli ingegneri che lavorano direttamente su AWS, così come agli stakeholder non tecnici che devono essere in grado di sostenere il potere del cloud computing. L’azienda figura ora nei primi tre posti della classifica di organizzazioni a livello mondiale con il maggior numero di certificazioni AWS rilasciate ai propri dipendenti.

    PI-C1_Mobile_Step-4

    Sfruttare i vantaggi del cloud

    Grazie all’utilizzo di AWS, Capital One ora immette nuovi prodotti nel mercato in poche settimane, piuttosto che mesi o anni. Inoltre, utilizza il machine learning per migliorare l’esperienza dei propri utenti e attrae i migliori sviluppatori e ingegneri. Tutto ciò permette all’azienda di raggiungere il suo più importante obiettivo: creare delle esperienze impeccabili per i propri clienti.

  • Analisi predittive
  • F1-Insights-logo-power-by-AWS

    Formula One Group usa Amazon SageMaker per ottimizzare le gare

    Scopri in che modo Formula 1 usa Amazon SageMaker e altri servizi AWS per ottimizzare le decisioni in gara e migliorare l'esperienza dei fan.
    Ulteriori informazioni 
    PI-F1-1-mobile-beginning-a-transformation-ending

    L'inizio di una trasformazione

    Formula One Group sta trasferendo in AWS la maggior parte della propria infrastruttura, che al momento si trova su data center locali; lo scopo è utilizzare i servizi di apprendimento automatico di AWS, tra cui Amazon SageMaker.

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    Ottimizzare le gare con l'apprendimento automatico

    Grazie alla cronologia di dati raccolti dai veicoli negli ultimi 65 anni, i data scientist della Formula 1 stanno addestrando modelli di apprendimento profondo che offrono previsioni e aiutano i team a ottimizzare le decisioni durante una gara. I modelli sono in grado di prevedere quando i team dovrebbero richiamare i veicoli per i pit-stop, determinare il momento migliore per cambiare le gomme e valutare le prestazioni dei singoli piloti.

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    Avvicinare i fan al circuito

    Formula 1 usa quindi i flussi di dati, le analisi e i servizi multimediali di AWS per offrire informazioni sulle decisioni dei piloti e sulle prestazioni dei veicoli a oltre 500 milioni di fan.

    PI-F1-4-mobile-building-for-the-future-ending

    Il futuro a un passo

    Eseguendo i carichi di lavoro HPC nell'ambiente scalabile di AWS, Formula 1 può pensare di apportare grandi innovazioni al proprio formato senza preoccupazioni per la capacità necessaria per implementarle.

  • Machine learning
  • Logo_Statcast-AI

    MLB sceglie AWS come provider ufficiale di apprendimento automatico

    Scopri in che modo la lega di baseball professionale americana conferisce un nuovo significato alle statistiche utilizzando l'apprendimento automatico in AWS
    Ulteriori informazioni 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    Una base per l'apprendimento approfondito

    MLB raccoglie dati statistici sui giocatori e i club da decine di anni, e dal 2015 ha iniziato a usare AWS per raccogliere e distribuire le statistiche di gioco e migliorare l'esperienza dei fan.

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    Potenti mezzi per sviluppatori

    Grazie ad Amazon SageMaker, MLB consente a data scientist e sviluppatori di creare, addestrare e distribuire in modo rapido e semplice modelli di apprendimento automatico su vasta scala.

    PI-MLB-3-Lightening the Load-ending stage

    Alleggerire il carico

    Questi modelli hanno aiutato MLB a eliminare i lunghi interventi manuali dai propri processi di registrazione di informazioni e statistiche, ad esempio per la visualizzazione dei risultati, l'acquisizione di note di gioco e la rilevazione del tipo di lancio.

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    Personalizzazione del gioco

    MLB progetta di collaborare con Amazon MSL Solutions Lab per continuare a migliorare Statcast, la tecnologia che analizza le prestazioni dei giocatori, includendo il testing della precisione delle previsioni di lancio e la creazione di esperienze personalizzate.

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    Un home run con l'intelligenza artificiale

    MLB continuerà a innovare utilizzando l'intelligenza artificiale In futuro, utilizzerà Amazon Comprehend per creare un modello di sintassi che sia in grado di scrivere script per le partite in tempo reale che simulino annunciatori famosi.

  • SERVERLESS
  • Matson-logo

    Matson opera la propria soluzione di spedizione e logistica globale in AWS

    Scopri in che modo Matson usa AWS per promuovere l'innovazione e l'assistenza clienti senza sacrificare affidabilità, sicurezza e risparmio sui costi infrastrutturali.
    Ulteriori informazioni 
    PI-Matson-Mobile_Step-1

    Monitoraggio in tempo reale

    Matson ha creato un'applicazione per dispositivi mobili con cui i suoi clienti possono monitorare in tempo reale la posizione delle loro merci. L'applicazione, inoltre, permette di ricercare in modo interattivo nella pianificazione dei percorsi delle navi, visualizzare mappe dei porti e riprodurre feed video in tempo reale.

    PI-Matson-Mobile_Step-2

    Accesso da dispositivi mobili

    Tutti i dispositivi mobili accedono ad AWS tramite Amazon API Gateway. In questo modo gli endpoint di edge location usufruiscono di maggiore disponibilità per l'accesso alle risorse nei cloud privati virtuali di Matson.

    PI-Matson-Mobile_Step-3

    Elaborazione serverless

    Le funzioni AWS Lambda sono state scritte utilizzando microservizi modellati su contesti aziendali con familiarità con le operazioni marittime, tra cui monitoraggio delle spedizioni e pianificazione dei percorsi delle navi. 

    PI-Matson-Mobile_Step-4

    Configurazione e storage di database

    Amazon DynamoDB gestisce la configurazione e le notifiche di feedback degli utenti inviate da dispositivi mobili. DynamoDB Streams offre notifiche in tempo reale all'assistenza clienti di Matson. 

    PI-Matson-Mobile_Step-5

    Monitoraggio dei dati e avvisi

    I clienti di Matson possono fare affidamento su un monitoraggio accurato e tempestivo delle loro merci e delle loro navi. Monitoraggio e invio di avvisi sono garantiti dall'uso di Amazon CloudWatch, Amazon SNS, Amazon SES, AWS Lambda e CloudWatch Logs. 

    PI-Matson-Mobile_Step-6

    Applicazione completamente serverless

    Matson offre ai propri clienti un'applicazione completamente serverless per consentire loro di monitorare le loro merci, senza dover provvedere a un'infrastruttura.

  • Videogiochi
  • PI-Epic_Logo_Final
    Epic Games utilizza AWS per il videogioco di fama mondiale Fortnite
    Scopri come Epic Games utilizza AWS per fornire Fortnite a più di 200 milioni di giocatori in tutto il mondo
    Ulteriori informazioni 
    PI-Epic-Mobile_Step-1

    Gettare le fondamenta sul cloud

    Epic Games ha cominciato a utilizzare AWS nel 2012 e ora ha migrato tutti i propri carichi di lavoro sul cloud AWS, eseguendo il proprio parco di server del videogioco, i sistemi di piattaforme back-end, i database, i siti Web, la pipeline di analisi e i sistemi di elaborazione su AWS.

    PI-Epic-Mobile_Step-2

    Fama a livello mondiale

    Nel 2017, Epic Games ha lanciato Fortnight, un videogioco multi-piattaforma e multi-giocatore che ha riscosso immediatamente un’enorme fama a livello mondiale. Solo durante il primo anno, la base di utenti di Fortnite è aumentata più di 100 volte, raggiungendo un numero complessivo di giocatori che supera i 200 milioni.

    PI-Epic-Mobile_Step-3

    Superare i limiti della scalabilità

    AWS ha svolto un ruolo fondamentale nel successo di Fortnite. Grazie all’utilizzo di AWS, Epic Games ospita eventi interni al gioco con centinaia di migliaia di utenti invitati, senza doversi preoccupare delle capacità necessarie. Inoltre, elabora 125 milioni di eventi al minuto nella propria pipeline di analisi e gestisce la crescita del proprio warehouse di dati con 5 PB al mese.

    PI-Epic-Mobile_Step-4

    Fornire la miglior esperienza di gioco

    Utilizzando AWS, Epic Games può continuare a migliorare l’esperienza dei propri giocatori e offrire nuovi ed eccitati giochi ed elementi di gioco. L’azienda progetta di espandere il proprio utilizzo dei servizi AWS in futuro, includendo il machine learning e i servizi basati su container.

  • APPLICAZIONI AZIENDALI
  • BPP_ylw_logo

    BP ha migliorato efficienza e agilità delle proprie app aziendali critiche

    Scopri in che modo BP ha semplificato e modernizzato la suite di applicazioni SAP in uso, migliorando l'esperienza dei clienti e ottenendo maggiore agilità nella gestione dei costi e prestazioni più potenti.
    Ulteriori informazioni 
    PI-BP-Mobile_Step-1

    Gestione di app aziendali critiche

    Il reparto IT di BP gestisce le applicazioni SAP impiegate da migliaia di dipendenti in tutto il mondo impegnati in gestione della catena di fornitura, approvvigionamento, gestione finanziaria e molto altro. 

    PI-BP-Mobile_Step-2

    Velocità e gestione dei costi migliorate

    Per migliorare velocità e gestione dei costi, BP usa Amazon EC2 per eseguire la migrazione delle app nel cloud. Inoltre, impiega istanze X1 di EC2 per migliorare la scalabilità e le prestazioni delle analisi in tempo reale.

    PI-BP-Mobile_Step-3

    Prestazioni più potenti

    Ora BP è in grado di creare nuovi sistemi on demand in poche ore, mentre prima erano necessarie settimane o mesi. Le prestazioni sono visibilmente migliorate; ad esempio il sistema ERP Lubricant ha ottenuto un'impennata delle prestazioni del 40%. 

    PI-BP-Mobile_Step-4

    Protezione dei dati

    Nell'ambito della migrazione nel cloud, BP basa ora i suoi standard di sicurezza su AWS Config, AWS Identity and Access Management (IAM), Amazon CloudWatch e AWS Trusted Advisor. Questi servizi hanno consentito a BP di sviluppare un framework sicuro per le attività IT aziendali.

AWSMP_logo_new-RGB

Cerca. Acquista. Distribuisci.

AWS Marketplace è un catalogo digitale che semplifica ricerca, testing, acquisto e distribuzione in AWS di migliaia soluzioni software create da produttori indipendenti.
Ulteriori informazioni 

Esplora le nostre soluzioni

60-machine-learning
Servizi e piattaforme con il più ampio supporto di framework di apprendimento automatico sul mercato.
60-analytics
Memorizza, suddividi in categorie e analizza i tuoi dati in un repository centralizzato.
60-IoT
Un sistema di dispositivi universali che collegano il mondo fisico al cloud.
60-serverless
Crea build ed esegui applicazioni e servizi senza dover gestire alcun server.
60-containers
Raccogli in pacchetti e distribuisci soluzioni semplici che offrono un ambiente software omogeneo e portabile in cui eseguire applicazioni.
60-enterprise
Crea applicazioni con un ampio set di servizi progettati specificamente per i requisiti di sicurezza, conformità, privacy e governance delle grandi imprese.
60-storage
Opzioni durevoli e a costi contenuti per backup, disaster recovery, archiviazione di dati con capacità a livello di petabyte.
60-windows-workloads
Capacità di elaborazione flessibile e scalabile per applicazioni Microsoft. Gestione semplice e sicura di carichi di lavoro Windows.

Sviluppato per i requisiti più severi

icon-security

Sicurezza

Funzionalità complete per soddisfare i più severi requisiti di sicurezza.
icon-compliant

Conformità

Ampia gamma di controlli, auditing e numerosi riconoscimenti in materia di sicurezza.
icon-hybrid

Tecnologia ibrida

Crea architetture ibride che estendono le tue infrastrutture locali nel cloud.
icon-scalable

Scalabilità

Usa solo le risorse necessarie, aumentando o riducendo la capacità elasticamente in pochi minuti.

Scopri come i nostri clienti usano AWS

Rete globale di regioni AWS

Il Cloud AWS opera in 61 zone di disponibilità distribuite su 20 regioni geografiche in tutto il mondo, con altre 12 zone di disponibilità e 4 ulteriori regioni già annunciate per il prossimo futuro in Bahrein, Città del Capo, Hong Kong e Milano.
2019 Infra Map - PDX
Key_AZ

Regione e numero delle zone di disponibilità

Stati Uniti orientali
Virginia settentrionale (6), Ohio (3)

Stati Uniti occidentali
California settentrionale (3), Oregon (4)

Asia Pacifico
Mumbai (2), Seul (2), Singapore (3), Sydney (3), Tokyo (4), Osaka-Locale (1)

Canada
Centrale (2)

Cina
Pechino (2), Ningxia (3)

Europa
Francoforte (3), Irlanda (3), Londra (3), Parigi (3), Stoccolma (3)

Sud America
San Paolo (3)

GovCloud (Stati Uniti)
Stati Uniti orientali (3), Stati Uniti occidentali (3)

Key_Coming-Soon

Nuove regioni (disponibili a breve)

Bahrein

Città del Capo

Hong Kong

Milano

Ulteriori informazioni 
#####EOF##### AWS Amplify

AWS Amplify

The fastest way to build mobile and web apps that scale


AWS Amplify makes it easy to create, configure, and implement scalable mobile and web apps powered by AWS. Amplify seamlessly provisions and manages your mobile backend and provides a simple framework to easily integrate your backend with your iOS, Android, Web, and React Native frontends. Amplify also automates the application release process of both your frontend and backend allowing you to deliver features faster.

Mobile applications require cloud services for actions that can’t be done directly on the device, such as offline data synchronization, storage, or data sharing across multiple users. You often have to configure, set up, and manage multiple services to power the backend. You also have to integrate each of those services into your application by writing multiple lines of code. However, as the number of application features grow, your code and release process becomes more complex and managing the backend requires more time.

Amplify provisions and manages backends for your mobile applications. You just select the capabilities you need such as authentication, analytics, or offline data sync and Amplify will automatically provision and manage the AWS service that powers each of the capabilities. You can then integrate those capabilities into your application through the Amplify libraries and UI components.

Rocket@1x
Easy to use
AWS Amplify is the fastest and easiest way to build mobile applications on AWS. Amplify allows you quickly set up authentication, analytics, and offline data sync for your mobile applications with a few commands and integrate them into your application with a few lines of code.
Tree@1x
Scale with your business

AWS Amplify leverages fully managed services like AWS AppSync, AWS Lambda, and others so you don't need to provision or manage any infrastructure. Your application backend services scale as needed, and you only pay for
what you use. 

Cloud@1x
Better customer engagement

AWS Amplify allows you to easily build engaging and interactive experiences for your customers. You can create voice and text interfaces powered by Amazon Lex, add virtual reality scenes created with Amazon Sumerian, or target your users with push notifications with just a few lines of code.

AmplifyDiagramLight
MobileLogos@1x
MobileFramework@1x

Amplify Framework

The Amplify Framework provides a set of libraries, UI components, and a command line interface to build a mobile backend and integrate with your iOS, Android, Web, and React Native apps. The Amplify CLI allows you to configure all the services needed to power your backend through a simple command line interface. The Amplify library makes it easy to integrate your code with your backend using declarative interfaces and simple UI components.

Cloud Services

Amplify leverages a core set of AWS services organized into categories—including offline data, authentication, analytics, push notifications, bots, and AR/VR.

Data@1x

Data

Query, store, and sync application data in real-time with features such as online and offline data access, data manipulation across multiple data sources, and GraphQL support.

Learn more >>

 

User@1x

Authentication

Add user sign-up, sign-in, and access control to mobile and web applications.

Learn more >>

 

Analytics

Drop-in analytics to track user sessions, attributes, and in-app metrics

Notifications

Integrate tailored push notifications with analytics and targeting built-in.

Bots

Create conversational interfaces using voice and text powered by deep learning.

Storage

Manage user content securely in the cloud or on the device.

API

Make HTTP requests using REST and GraphQL easily and securely.

AR & VR

Integrate virtual reality (VR), augmented reality (AR), and 3D scenes easily.


Developer Tools

AWS Amplify fully automates mobile application tests. You can also streamline the deployments for your web app and backend resources using the Amplify Console. This allows you to quickly and easily test each code change and catch bugs while they are small and simple to fix. With Amplify, you can quickly iterate on feedback and get new features to your users faster.

AmplifyConsole

Amplify Console

The AWS Amplify Console is a continuous delivery and hosting service for mobile web applications. Modern mobile web applications are constructed as single page web applications which package all application components into static files. The AWS Amplify Console makes it easier for you to rapidly release new features, helps you avoid downtime during application deployment, and handles the complexity of simultaneously updating the frontend and backend of your applications.

DeviceFarm

Device Farm

AWS Device Farm is a full managed testing service for your iOS and Android applications. You can perform automated tests against a large collection of physical devices in the AWS Cloud. Or, you can perform manual tests by interacting with devices in real time, directly from your web browser.

#####EOF##### AWS Console - Signup
#####EOF##### Amazon Web Services (AWS) – บริการประมวลผลบนระบบคลาวด์

ดูผลิตภัณฑ์ของเรา

การวิเคราะห์
การผสานรวมแอปพลิเคชัน
การประมวลผล
ฐานข้อมูล
เครื่องมือสำหรับ Developer
อินเทอร์เน็ตในทุกสิ่ง
Machine Learning
การจัดการและการควบคุมดูแล
บริการสื่อ
การโยกย้ายและการถ่ายโอนข้อมูล
การสร้างเครือข่ายและการจัดส่งเนื้อหา
การรักษาความปลอดภัย การระบุตัวตน และการปฏิบัติตามข้อกำหนด
พื้นที่จัดเก็บ

ขับเคลื่อนนวัตกรรมของลูกค้า

  • การแปลงโฉมองค์กร
  • การวิเคราะห์เชิงคาดการณ์
  • Machine Learning
  • ไร้เซิร์ฟเวอร์
  • การเล่นเกม
  • แอปพลิเคชันระดับองค์กร
  • การแปลงโฉมองค์กร
  • PI-C1_Logo

    Capital One เปลี่ยนโฉมการธนาคารโดยใช้ AWS

    เรียนรู้วิธีที่ Capital One นำกลยุทธ์ระบบคลาวด์เป็นสำคัญไปใช้กับการศึกษา การวางแผนระยะยาว และการมุ่งเน้นความต้องการของลูกค้าอย่างต่อเนื่อง
    เรียนรู้เพิ่มเติม 
    PI-C1_Mobile_Step-1

    มุ่งเน้นไปที่ลูกค้า

    ในปี 2014 Capital One มีความสามารถของระบบคลาวด์ส่วนตัวแบบแรกเริ่ม และยังทำการทดลองกับ AWS อีกด้วย เพื่อที่จะสร้างคุณสมบัติที่ลูกค้าต้องการโดยเร็วที่สุด บริษัทจึงเลือกที่จะหันมาใช้ AWS

    PI-C1_Mobile_Step-2

    ทำส่วนที่ยากก่อน

    การรักษาความปลอดภัยและการปฏิบัติตามกฎระเบียบเป็นสิ่งสำคัญสำหรับ Capital One ในฐานะสถาบันการเงิน เพื่อตอบสนองความต้องการเหล่านี้ Capital One ได้สร้างกรอบความเสี่ยงของระบบคลาวด์และสร้างฟังก์ชันการกำกับดูแลระบบคลาวด์ก่อนที่จะย้ายปริมาณงานไปยัง AWS

    PI-C1_Mobile_Step-3

    การศึกษาเรื่องกุญแจสู่ระบบคลาวด์

    Capital One มอบโปรแกรมการฝึกอบรมระบบคลาวด์แก่วิศวกรที่ทำงานบน AWS โดยตรง รวมถึงผู้ถือผลประโยชน์ร่วมที่ไม่ใช่ด้านเทคนิคที่ต้องสามารถสนับสนุนการดำเนินการประมวลผลบนระบบคลาวด์ ตอนนี้บริษัทอยู่ในอันดับที่สามขององค์กรทั้งหมดทั่วโลกสำหรับจำนวนพนักงานที่มี AWS Certification

    PI-C1_Mobile_Step-4

    ตระหนักถึงประโยชน์ของระบบคลาวด์

    จากการใช้ AWS ทำให้ Capital One สามารถนำผลิตภัณฑ์ใหม่ออกสู่ตลาดได้ในไม่กี่สัปดาห์แทนที่จะใช้เวลาเป็นเดือนหรือปี สามารถใช้ Machine Learning เพื่อปรับปรุงประสบการณ์ของลูกค้าได้ และสามารถดึงดูด Developer และวิศวกรชั้นนำ ทั้งหมดนี้ช่วยให้บริษัทบรรลุเป้าหมายที่สำคัญที่สุดซึ่งก็คือการสร้างประสบการณ์ที่ยอดเยี่ยมให้กับลูกค้า

  • การวิเคราะห์เชิงคาดการณ์
  • F1-Insights-logo-power-by-AWS

    Formula One Group ใช้ Amazon SageMaker เพื่อพัฒนาการแข่งรถ

    เรียนรู้วิธีที่ Formula 1 ใช้ Amazon SageMaker และบริการของ AWS อื่นๆ เพื่อพัฒนาการตัดสินใจเกี่ยวกับการแข่งรถและปรับปรุงประสบการณ์ของแฟนๆ ให้ดียิ่งขึ้น
    เรียนรู้เพิ่มเติม 
    PI-F1-1-mobile-beginning-a-transformation-ending

    เริ่มการเปลี่ยนโฉม

    Formula One Group กำลังเคลื่อนย้ายโครงสร้างพื้นฐานส่วนใหญ่จากศูนย์ข้อมูลภายในองค์กรมาที่ AWS และกำหนดมาตรฐานตามบริการ Machine Learning รวมถึง Amazon SageMaker

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    ใช้ Machine Learning เพื่อพัฒนาการแข่งรถ

    นักวิทยาศาสตร์ข้อมูล Formula 1 กำลังใช้ข้อมูลการแข่งขันที่รวบรวมจากรถแข่งในช่วง 65 ปีที่ผ่านมาเพื่อฝึกอบรมโมเดลการเรียนรู้เชิงลึกเพื่อคาดการณ์การแข่ง และช่วยให้ทีมสามารถปรับปรุงการตัดสินใจในระหว่างการแข่งได้อย่างเหมาะสม โมเดลเหล่านี้สามารถคาดการณ์ได้ว่าเมื่อใดทีมควรนำรถเข้าพิต ระบุเวลาที่เหมาะสมที่สุดในการเปลี่ยนยาง และประเมินประสิทธิภาพของนักขับ

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    ให้แฟนๆ ได้มีส่วนร่วมบนเส้นทางแห่งความสำเร็จ

    Formula 1 จึงใช้บริการสตรีมข้อมูล การวิเคราะห์ และสื่อของ AWS เพื่อให้แฟนๆ กว่า 500 ล้านคนได้รับรู้ถึงข้อมูลเชิงลึกเกี่ยวกับการตัดสินใจของนักขับและประสิทธิภาพของตัวรถ

    PI-F1-4-mobile-building-for-the-future-ending

    สร้างหนทางสู่อนาคต

    เพราะ Formula 1 สามารถรันปริมาณงานในการประมวลผลประสิทธิภาพสูงในสภาพแวดล้อมที่ปรับขนาดได้บน AWS องค์กรจึงสามารถพัฒนานวัตกรรมสำหรับประสบการณ์การแข่งรถ Formula 1 การออกแบบรถยนต์ และอื่นๆ ได้โดยไม่ต้องกังวลเรื่องความจุ

  • Machine Learning
  • Logo_Statcast-AI

    MLB เลือก AWS เป็นผู้ให้บริการ Machine Learning อย่างเป็นทางการ

    เรียนรู้ว่า Professional Baseball League ของอเมริกาใช้ Machine Learning ของ AWS ทำให้สถิติมีความหมายได้อย่างไร
    เรียนรู้เพิ่มเติม 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    รากฐานของการเรียนรู้เชิงลึก

    MLB ได้เก็บรวบรวมข้อมูลเชิงสถิติเกี่ยวกับผู้เล่นและสโมสรของตนมาเป็นเวลาหลายทศวรรษ และในปี 2015 MLB ก็เริ่มใช้ AWS ในการเก็บรวบรวมและเผยแพร่สถิติวันแข่งขันเพื่อปรับปรุงประสบการณ์ของแฟนๆ ให้ดีขึ้น

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    การเพิ่มประสิทธิภาพให้ Developer

    เมื่อใช้ Amazon Sagemaker แล้ว Developer และ Data Scientist ของ MLB ก็สามารถสร้าง ฝึกอบรม และปรับใช้โมเดล Machine Learning ตามต้องการได้อย่างรวดเร็วและง่ายดาย

    PI-MLB-3-Lightening the Load-ending stage

    การลดปริมาณงาน

    โมเดลเหล่านี้ช่วยให้ MLB ลดขั้นตอนที่ต้องดำเนินการด้วยตนเองและใช้เวลามากซึ่งเกี่ยวข้องกับการจัดเก็บบันทึกและสถิติ เช่น การจัดเก็บคะแนน การบันทึกโน้ตการแข่งขัน และการจำแนกพิทช์

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    การปรับการแข่งขันให้เข้ากับแต่ละบุคคล

    MLB วางแผนที่จะประสานงานกับ Amazon ML Solutions Lab ในการปรับปรุง Statcast ต่อไปซึ่งเป็นเทคโนโลยีติดตามข้อมูลที่วิเคราะห์ประสิทธิภาพของผู้เล่น รวมถึงการทดสอบความถูกต้องแม่นยำของการคาดเดาพิทช์และการสร้างประสบการณ์ที่ปรับให้เหมาะกับผู้ชมแต่ละคน

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    โฮมรันด้วยปัญญาประดิษฐ์

    MLB จะสร้างนวัตกรรมต่อไปโดยใช้ปัญญาประดิษฐ์ องค์กรวางแผนที่จะใช้ Amazon Comprehend ในการสร้างโมเดลภาษาที่สามารถสร้างสคริปต์สำหรับการแข่งขันแบบถ่ายทอดสดที่จำลองผู้ประกาศที่มีชื่อเสียง

  • ไร้เซิร์ฟเวอร์
  • Matson-logo

    Matson ดำเนินธุรกิจขนส่งและโลจิสติกส์ทั่วโลกด้วย AWS

    มาเรียนรู้วิธีที่ Matson ใช้ AWS เพื่อขับเคลื่อนนวัตกรรมและบริการลูกค้าระดับโลกและบรรลุเป้าหมายด้านความน่าเชื่อถือในการดำเนินการ ความปลอดภัย และการประหยัดต้นทุนโครงสร้างพื้นฐานด้วยในขณะเดียวกัน
    เรียนรู้เพิ่มเติม 
    PI-Matson-Mobile_Step-1

    การติดตามตู้คอนเทนเนอร์แบบเรียลไทม์

    Matson สร้างแอปพลิเคชันมือถือที่ทำงานได้ดีเยี่ยมสำหรับตู้คอนเทนเนอร์ทั่วโลกซึ่งทำให้ลูกค้าสามารถติดตามการขนส่งสินค้าแบบเรียลไทม์ คุณสมบัติที่เป็นประโยชน์อื่นๆ ในแอปพลิเคชัน ได้แก่ การค้นหาตารางเดินเรือเชิงโต้ตอบ การค้นหาแผนที่ท่าเรือตามตำแหน่ง และฟีดกล้องแบบไลฟ์เกต

    PI-Matson-Mobile_Step-2

    การเข้าถึงอุปกรณ์มือถือ

    อุปกรณ์มือถือทั้งหมดเข้าถึง AWS ผ่านทาง Amazon API Gateway ซึ่งทำให้มีปลายทางที่กำหนดสถานที่ตั้ง Edge พร้อมใช้งานสำหรับเข้าถึงทรัพยากรภายใน Virtual Private Cloud ที่มีอยู่ของ Matson

    PI-Matson-Mobile_Step-3

    การประมวลผลแบบไร้เซิร์ฟเวอร์

    ฟังก์ชันของ AWS Lambda ออกแบบมาให้ใช้รูปแบบไมโครเซอร์วิสและเป็นไปตามแบบในบริบททางธุรกิจทางทะเลเป็นหลัก เช่น ติดตามการขนส่งและตารางเดินเรือ 

    PI-Matson-Mobile_Step-4

    การกำหนดค่าและการจัดเก็บฐานข้อมูล

    Amazon DynamoDB à¸ˆà¸±à¸”การกำหนดค่ารวมถึงการกำหนดค่าคำติชมของผู้ใช้และการแจ้งเตือนคำติชมของผู้ใช้ที่ส่งมาจากอุปกรณ์มือถือ DynamoDB Streams จะทำการแจ้งเตือนแบบเรียลไทม์ไปยังทีมบริการลูกค้าของ Matson 

    PI-Matson-Mobile_Step-5

    การเฝ้าติดตามข้อมูลและการแจ้งเตือน

    ลูกค้าของ Matson เชื่อมั่นในข้อมูลการติดตามตู้คอนเทนเนอร์และสถานะเรือที่แม่นยำและล่าสุด จะสามารถเฝ้าติดตามและแจ้งเตือนเกี่ยวกับเหตุการณ์ของระบบได้โดยใช้ Amazon CloudWatch, Amazon SNS, Amazon SES, AWS Lambda และ CloudWatch Logs 

    PI-Matson-Mobile_Step-6

    แอปพลิเคชันไร้เซิร์ฟเวอร์แบบครบวงจร

    ขณะนี้ Matson สามารถเสนอแอปพลิเคชันไร้เซิร์ฟเวอร์แบบครบวงจรให้แก่ลูกค้าเพื่อช่วยติดตามการขนส่งและไม่มีโครงสร้างพื้นฐานให้ต้องดูแลรักษา

  • การเล่นเกม
  • PI-Epic_Logo_Final
    Epic Games ใช้ AWS เพื่อขับเคลื่อนเกม Fortnite ทั่วโลก
    เรียนรู้ว่า Epic Games ใช้ AWS เพื่อส่ง Fortnite ให้กับผู้เล่นกว่า 200 ล้านคนทั่วโลกได้อย่างไร
    เรียนรู้เพิ่มเติม 
    PI-Epic-Mobile_Step-1

    การสร้างรากฐานบนระบบคลาวด์

    Epic Games ใช้ AWS มาตั้งแต่ปี 2012 และขณะนี้ก็ทำงานบน AWS Cloud ทั้งหมดแล้ว โดยใช้งานกลุ่มเซิร์ฟเวอร์เกมทั่วโลก ระบบแพลตฟอร์มแบ็กเอนด์ ฐานข้อมูล เว็บไซต์ ขั้นตอนการวิเคราะห์ และระบบประมวลผลทั้งหมดบน AWS

    PI-Epic-Mobile_Step-2

    กระแสชั่วข้ามคืน

    ในปี 2017 Epic Games ได้เปิดตัว Fortnite เกมข้ามแพลตฟอร์มแบบผู้เล่นหลายคนซึ่งกลายเป็นกระแสชั่วข้ามคืน ในปีแรก ฐานผู้เล่นของ Fortnite เติบโตขึ้นมากกว่า 100 เท่า เป็น 200 ล้านผู้เล่นทั่วโลก

    PI-Epic-Mobile_Step-3

    ขยายขนาดอย่างไม่หยุดยั้ง

    AWS เป็นส่วนสำคัญในความสำเร็จของFortnite การใช้ AWS ทำให้ Epic Games สามารถจัดกิจกรรมภายในเกมโดยมีผู้เล่นที่ได้รับเชิญหลายร้อยล้านคน โดยไม่ต้องกังวลเกี่ยวกับความจุ ซึ่งสามารถป้อนข้อมูลได้ 125 ล้านเหตุการณ์ต่อนาทีในขั้นตอนการวิเคราะห์ และช่วยจัดการการเติบโตของคลังข้อมูลมากกว่า 5 PB ต่อเดือน

    PI-Epic-Mobile_Step-4

    มอบสุดยอดประสบการณ์การเล่นเกม

    การใช้ AWS ทำให้ Epic Games สามารถปรับปรุงประสบการณ์ของผู้เล่นและนำเสนอเกมและองค์ประกอบเกมใหม่ๆ ที่น่าตื่นเต้นอยู่เสมอ บริษัทวางแผนที่จะขยายการใช้บริการของ AWS ในอนาคต รวมถึง Machine Learning และบริการต่างๆ ที่มีคอนเทนเนอร์

  • แอปพลิเคชันระดับองค์กร
  • BPP_ylw_logo

    BP ช่วยเพิ่มประสิทธิภาพและเพิ่มความคล่องตัวด้านต้นทุนและความรวดเร็วสำหรับแอปสำหรับธุรกิจที่สำคัญ

    ดูว่า BP ช่วยลดความซับซ้อนและทำให้ชุดแอปพลิเคชัน SAP ของคุณทันสมัยขึ้น ปรับปรุงประสบการณ์การใช้งานของผู้ใช้ พร้อมกับเพิ่มความคล่องตัวและเพิ่มประสิทธิภาพได้อย่างไร
    เรียนรู้เพิ่มเติม 
    PI-BP-Mobile_Step-1

    การจัดการแอปสำหรับธุรกิจที่สำคัญ

    องค์กรด้าน IT ของ BP จัดการแอปพลิเคชัน SAP ที่ใช้โดยพนักงานหลายพันคนทั่วโลกสำหรับซัพพลายเชน การจัดหา การเงิน และอื่นๆ 

    PI-BP-Mobile_Step-2

    การปรับปรุงความเร็วและความคล่องตัวของต้นทุน

    เพื่อปรับปรุงความเร็วและเพิ่มความคล่องตัวด้านต้นทุน BP ได้ใช้ Amazon EC2 เพื่อย้ายแอปสำหรับธุรกิจหลักเหล่านี้ไปยังระบบคลาวด์ นอกจากนี้ ทีมยังสร้าง EC2 X1 instance เพื่อเพิ่มขนาดและเพิ่มประสิทธิภาพการวิเคราะห์แบบเรียลไทม์

    PI-BP-Mobile_Step-3

    การเพิ่มประสิทธิภาพ

    ทีมงานสามารถตั้งระบบตามความต้องการได้ภายในไม่กี่ชั่วโมงแทนที่จะเป็นสัปดาห์หรือเป็นเดือน BP ได้รับประสิทธิภาพการทำงานโดยรวมเพิ่มขึ้น ซึงรวมถึงการปรับปรุงความเร็ว 40 เปอร์เซ็นต์สำหรับระบบ ERP ของผลิตภัณฑ์หล่อลื่น 

    PI-BP-Mobile_Step-4

    การรักษาความปลอดภัยข้อมูล

    ในฐานะที่เป็นส่วนหนึ่งของการย้ายระบบคลาวด์ BP กำหนดมาตรฐานความปลอดภัยโดยใช้ AWS Config, AWS Identity and Access Management (IAM), Amazon CloudWatch และ AWS Trusted Advisor มาตรฐานใหม่เหล่านี้ช่วยให้ BP พัฒนากรอบงานความปลอดภัยสำหรับการดำเนินงานด้าน IT ของตนได้

AWSMP_logo_new-RGB

ค้นหา ซื้อ ใช้งาน

AWS Marketplace เป็นแคตตาล็อกดิจิทัลที่มีรายการซอฟต์แวร์จากผู้จำหน่ายซอฟต์แวร์อิสระนับพันรายการ ช่วยให้คุณค้นหา ทดสอบ ซื้อ และปรับใช้ซอฟต์แวร์ที่ทำงานบน AWS ได้อย่างง่ายดาย
เรียนรู้เพิ่มเติม 

สำรวจโซลูชันของเรา

60-machine-learning
สร้างด้วยบริการและแพลตฟอร์มอันทรงพลัง และสนับสนุนกรอบงาน Machine Learning ได้อย่างหลากหลายที่สุดในทุกที่
60-analytics
จัดเก็บ จัดหมวดหมู่ และวิเคราะห์ข้อมูลทั้งหมดอย่างปลอดภัยในพื้นที่เก็บข้อมูลส่วนกลาง
60-IoT
ระบบของอุปกรณ์แพร่หลายที่เชื่อมต่อโลกทางกายภาพกับระบบคลาวด์
60-serverless
สร้างและรันแอปพลิเคชันและบริการโดยไม่ต้องคำนึงถึงเซิร์ฟเวอร์
60-containers
จัดทำแพคเกจและปรับใช้แอปพลิเคชันที่ใช้พื้นที่น้อยและมีสภาพการทำงานของซอฟต์แวร์ที่สม่ำเสมอและเคลื่อนย้ายง่ายสำหรับแอปพลิเคชัน เพื่อให้รันและปรับขนาดได้ทุกที่
60-enterprise
สร้างด้วยชุดบริการที่เสร็จสมบูรณ์ซึ่งออกแบบมาเฉพาะเพื่อตอบสนองความต้องการด้านความปลอดภัย การปฏิบัติตามข้อกำหนด ความเป็นส่วนตัว และการกำกับดูแลที่แตกต่างกันออกไปขององค์กรขนาดใหญ่
60-storage
ตัวเลือกที่ทนทานและคุ้มค่าการลงทุนสำหรับการสำรองข้อมูล การกู้คืนหลังภัยพิบัติ และการเก็บข้อมูลถาวรที่ระดับเพตะไบต์
60-windows-workloads
ความสามารถในการประมวลผลที่ยืดหยุ่นและปรับขนาดได้สำหรับแอปพลิเคชันของ Microsoft จัดการและรักษาความปลอดภัยให้กับปริมาณงานของ Windows ได้อย่างง่ายดาย

วิศวกรรมที่ตอบสนองข้อกำหนดที่เข้มงวดที่สุด

icon-security

ปลอดภัย

ความสามารถด้านความปลอดภัยที่ครอบคลุมเพื่อตอบสนองข้อกำหนดที่เข้มงวดสูงสุด
icon-compliant

ปฏิบัติตามกฎระเบียบ

การควบคุมที่เข้มงวด การตรวจสอบและการให้การรับรองด้านความปลอดภัยที่ครอบคลุม
icon-hybrid

เทคโนโลยีไฮบริด

สร้างสถาปัตยกรรมแบบไฮบริดที่ขยายโครงสร้างพื้นฐานที่คุณมีอยู่แล้วไปสู่ระบบคลาวด์
icon-scalable

ปรับขนาดได้

เข้าถึงมากหรือน้อยได้เท่าที่ต้องการ และปรับเพิ่มลดได้ตามต้องการโดยแจ้งเพียงไม่กี่นาที

เรียนรู้วิธีที่ลูกค้าของเราสร้างบน AWS

เครือข่ายทั่วโลกของภูมิภาค AWS

AWS Cloud ครอบคลุม Availability Zone 61 แห่งใน 20 ภูมิภาคทางภูมิศาสตร์ทั่วโลก พร้อมแผนที่จะเปิดตัวเพิ่มเติมสำหรับ Availability Zone อีก 12 แห่งและอีก 4 ภูมิภาคในบาห์เรน เคปทาวน์ เขตบริหารพิเศษฮ่องกง และมิลาน
2019 Infra Map - PDX
Key_AZ

ภูมิภาคและจำนวน Availability Zone

สหรัฐอเมริกาฝั่งตะวันออก
เวอร์จิเนียเหนือ (6) โอไฮโอ (3)

สหรัฐอเมริกาฝั่งตะวันตก
แคลิฟอร์เนียเหนือ (3), ออริกอน (4)

เอเชียแปซิฟิก
มุมไบ (2), โซล (2), สิงคโปร์ (3), ซิดนีย์ (3), โตเกียว (4), พื้นที่โอซากา (1)

แคนาดา
ตอนกลาง (2)

จีน
ปักกิ่ง (3) หนิงเซี่ย (2)

ยุโรป
แฟรงเฟิร์ต (3), ไอร์แลนด์ (3), ลอนดอน (3), ปารีส (3), สตอกโฮล์ม (3)

อเมริกาใต้
เซาเปาลู (3)

GovCloud (US)
สหรัฐอเมริกาฝั่งตะวันออก (3), à¸ªà¸«à¸£à¸±à¸à¸­à¹€à¸¡à¸£à¸´à¸à¸²à¸à¸±à¹ˆà¸‡à¸•ะวันตก (3)

Key_Coming-Soon

ภูมิภาคใหม่ (เร็วๆ นี้)

บาห์เรน

เคปทาวน์

เขตบริหารพิเศษฮ่องกง

มิลาน

เรียนรู้เพิ่มเติม 
#####EOF##### Amazon.de
Hier klicken Jetzt informieren Book Spring Store 2017 Cloud Drive Photos UHD TVs Mehr dazu HI_PROJECT Ballon Mehr dazu Mehr dazu Jetzt bestellen AmazonMusicUnlimited FußballLiveAmazonMusic Sportartikel
Markus Beckedahl
Wunschzettel
Markus @netzpolitik
Markus @netzpolitik

Filtern & sortieren
Um Artikel als gekauft zu markieren, geben bitte Sie unten Ihre Informationen ein. Der Eigentümer dieser Liste weiß nicht, dass der Artikel gekauft wurde, außer er versucht selbst, ihn zu kaufen.
Sie haben "Markus @netzpolitik" bereits in Ihren Wunschlisten gespeichert.
Der Eigentümer dieser Liste hat ein Element aus einer anderen Website hinzugefügt. Wenn Sie fortfahren, verlassen Sie Amazon.
Weiter
Wählen Sie "Dies ist ein Geschenk" für:
  • Legen Sie einen Packzettel bei, damit der Empfänger weiß, von wem das Geschenk ist.
  • Keine Preise auf dem Lieferschein anzeigen.
  • Optionale Geschenkverpackung hinzufügen.
  • Fügen Sie eine kostenlose persönliche Nachricht zum Geschenk hinzu.
  • Damit das Geschenk eine Überraschung bleibt: Verbergen Sie Artikel, die nur in der Originalverpackung des Herstellers versandt werden.
#####EOF##### Amazon Web Services (AWS) - Cloud Computing Services

Explore Our Products

Powering Customer Innovation

  • Enterprise Transformation
  • Predictive Analytics
  • Machine Learning
  • SERVERLESS
  • Gaming
  • ENTERPRISE APPLICATIONS
  • Enterprise Transformation
  • PI-C1_Logo

    Capital One Reimagines Banking Using AWS

    Learn how Capital One implemented its cloud-first strategy through education, long-term planning, and constant focus on customer needs.
    Learn More 
    PI-C1_Mobile_Step-1

    Focusing on Customers

    In 2014, Capital One had a fledgling private cloud capability and was also experimenting with AWS. In an effort to build the features its customers wanted as quickly as possible, the company chose to pursue AWS.

    PI-C1_Mobile_Step-2

    Doing the Hard Part First

    Security and compliance are critical to Capital One as a financial institution. To address these needs, Capital One built a cloud-risk framework and established a cloud-governance function before moving a single workload to AWS.

    PI-C1_Mobile_Step-3

    Education: Key to the Cloud

    Capital One offers a cloud training program to engineers who work directly on AWS as well as non-technical stakeholders who need to be able to advocate for the power of cloud computing. The company now ranks in the top three of all enterprises globally for AWS certifications held by employees.

    PI-C1_Mobile_Step-4

    Realizing the Benefits of the Cloud

    Using AWS, Capital One brings new products to market in weeks instead of months or years, uses machine learning to improve customer experience, and attracts top developers and engineers—all of which help the company achieve its most important goal: creating great experiences for its customers.

  • Predictive Analytics
  • F1-Insights-logo-power-by-AWS

    Formula One Group Uses Amazon SageMaker to Optimize Racing

    Learn how Formula 1 uses Amazon SageMaker and other AWS services to optimize racing decisions and improve fan experience.
    Learn More 
    PI-F1-1-mobile-beginning-a-transformation-ending

    Beginning a Transformation

    Formula One Group is moving most of its infrastructure from on-premises data centers to AWS and standardizing on AWS machine-learning services—including Amazon SageMaker.

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    Optimizing Racing with Machine Learning

    Using historical race data collected from cars over the past 65 years, Formula 1 data scientists are training deep-learning models that make race predictions and help teams optimize mid-race decisions. The models can predict when teams should pit their cars, determine the best timing for changing tires, and evaluate how drivers are performing.

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    Bringing Fans onto the Track

    Formula 1 then uses AWS data streaming, analytics, and media services to deliver insights about driver decisions and car performance to its more than 500 million fans.

    PI-F1-4-mobile-building-for-the-future-ending

    Building for the Future

    Because Formula 1 runs its high-performance computing workloads in a scalable environment on AWS, the organization can innovate on the Formula 1 racing experience, car design, and more without worrying about capacity.

  • Machine Learning
  • Logo_Statcast-AI

    MLB Chooses AWS as Official Machine Learning Provider

    Learn How America’s Professional Baseball League Brings Meaning to Statistics Using AWS Machine Learning
    Learn More 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    A Foundation for Deep Learning

    MLB has been collecting statistical data on its players and clubs for decades, and in 2015 it started using AWS to collect and distribute game-day stats to enhance the fan experience.

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    Empowering Developers

    By using Amazon Sagemaker, MLB is empowering its developers and data scientists to quickly and easily build, train, and deploy machine-learning models at scale.

    PI-MLB-3-Lightening the Load-ending stage

    Lightening the Load

    These models help MLB eliminate manual, time-intensive processes associated with recordkeeping and statistics, like scorekeeping, capturing game notes, and classifying pitches.

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    Personalizing the Game

    MLB plans to work with the Amazon ML Solutions Lab to continue improving Statcast—its tracking technology that analyzes player performance—including testing accuracy of pitch predictions and creating personalized viewer experiences.

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    A Home Run with Artificial Intelligence

    MLB will continue to innovate using artificial intelligence. The organization plans to use Amazon Comprehend to build a language model that could create scripts for live games that simulate iconic announcers.

  • SERVERLESS
  • Matson-logo

    Matson Operates Its Global Shipping and Logistics Businesses on AWS

    Learn how Matson is using AWS to drive innovation and world-class customer service, while achieving operational reliability, security, and infrastructure cost savings.
    Learn More 
    PI-Matson-Mobile_Step-1

    Real-Time Container Tracking

    Matson built a flagship mobile application for global container tracking that allows customers to perform real-time tracking of their freight shipments. Other valuable features in the application include interactive vessel schedule searching, location-based port map lookups, and live gate-camera feeds.

    PI-Matson-Mobile_Step-2

    Mobile Device Access

    All mobile devices access AWS via Amazon API Gateway. This provides highly available edge located endpoints for access into resources within Matson's existing virtual private clouds.

    PI-Matson-Mobile_Step-3

    Serverless Computing

    The AWS Lambda functions are designed using the microservices pattern and are modeled around specific ocean-based business contexts, such as shipment tracking and vessel schedules. 

    PI-Matson-Mobile_Step-4

    Database Configuration and Storage

    Amazon DynamoDB manages configuration as well as user-feedback configuration and user-feedback notifications sent from mobile devices. DynamoDB Streams provides real-time notifications to Matson's customer service team. 

    PI-Matson-Mobile_Step-5

    Data Monitoring and Alerts

    Matson's customers rely on accurate, up-to-the-minute container tracking and vessel status information. Monitoring and alerting of system events is achieved by using Amazon CloudWatch, Amazon SNS, Amazon SES, AWS Lambda, and CloudWatch Logs. 

    PI-Matson-Mobile_Step-6

    End-to-End Serverless Application

    Matson can now offer customers an end-to-end serverless application to help track their shipments, and has no infrastructure to maintain.

  • Gaming
  • PI-Epic_Logo_Final
    Epic Games Uses AWS to Power Worldwide Game Fortnite
    Learn how Epic Games uses AWS to deliver Fortnite to more than 200 million players around the world.
    Learn More 
    PI-Epic-Mobile_Step-1

    Building a Foundation on the Cloud

    Epic Games has been using AWS since 2012 and is now all in on the AWS Cloud, running its worldwide game-server fleet, backend platform systems, databases, websites, analytics pipeline, and processing systems on AWS.

    PI-Epic-Mobile_Step-2

    An Overnight Sensation

    In 2017, Epic Games launched Fortnite, a cross-platform, multiplayer game that became an overnight sensation. In its first year, Fortnite’s user base grew by more than 100 times to 200 million players worldwide.

    PI-Epic-Mobile_Step-3

    Pushing the Boundaries of Scale

    AWS is integral to the success of Fortnite. Using AWS, Epic Games hosts in-game events with hundreds of millions of invited users without worrying about capacity, ingests 125 million events per minute into its analytics pipeline, and handles data-warehouse growth of more than 5 PB per month.

    PI-Epic-Mobile_Step-4

    Providing the Best Gaming Experience

    Using AWS, Epic Games is always improving the experience of its players and offering new, exciting games and game elements. The company plans to expand its use of AWS services in the future, including machine learning and containerized services.

  • ENTERPRISE APPLICATIONS
  • BPP_ylw_logo

    BP Improves Effectiveness and Gains Cost Agility and Speed for Its Critical Business Apps

    See how BP simplified and modernized its suite of SAP applications, improving user experience while gaining cost agility and enhanced performance.
    Learn More 
    PI-BP-Mobile_Step-1

    Managing Critical Business Apps

    BP's IT organization manages SAP applications used by thousands of employees worldwide for supply chain, procurement, finance, and more. 

    PI-BP-Mobile_Step-2

    Improving Speed & Cost Agility

    To improve speed and gain cost agility, BP used Amazon EC2 to migrate these core business apps to the cloud. In addition, the team built EC2 X1 instances to increase scale and to power their real-time analytics.

    PI-BP-Mobile_Step-3

    Increasing Performance

    The team can now stand up systems on demand in hours instead of weeks or months. BP is seeing performance increases across the board, including a 40 percent speed improvement for the Lubricants ERP system. 

    PI-BP-Mobile_Step-4

    Securing Data

    As part of its cloud migration, BP reset its security standards using AWS Config, AWS Identity and Access Management (IAM), Amazon CloudWatch, and AWS Trusted Advisor. These new standards helped BP to develop a secure framework for operating its IT organization.

AWSMP_logo_new-RGB

Find. Buy. Deploy.

AWS Marketplace is a digital catalog with thousands of software listings from independent software vendors that make it easy to find, test, buy, and deploy software that runs on AWS.
Learn More 

Explore Our Solutions

60-machine-learning
Build with powerful services and platforms, and the broadest machine learning framework support anywhere.
60-analytics
Securely store, categorize, and analyze all your data in one, centralized repository.
60-IoT
A system of ubiquitous devices connecting the physical world to the cloud.
60-serverless
Build and run applications and services without thinking about servers.
60-containers
Package and deploy applications that are lightweight and provide a consistent, portable software environment for applications to easily run and scale anywhere.
60-enterprise
Build with a mature set of services specifically designed for the unique security, compliance, privacy, and governance requirements of large organizations.
60-storage
Durable, cost-effective options for backup, disaster recovery, and data archiving at petabyte scale.
60-windows-workloads
Flexible, scalable compute capacity for Microsoft applications. Easily manage and secure Windows workloads.

Engineered for the Most Demanding Requirements

icon-security

Secure

Comprehensive security capabilities to satisfy the most demanding requirements.
icon-compliant

Compliant

Rich controls, auditing and broad security accreditations.
icon-hybrid

Hybrid

Build hybrid architectures that extend your on-premises infrastructure to the Cloud.
icon-scalable

Scalable

Access as much or as little as you need, and scale up and down as required with only a few minutes notice.

Learn How Our Customers Build on AWS

Global Network of AWS Regions

The AWS Cloud spans 61 Availability Zones within 20 geographic Regions around the world, with announced plans for 15 more Availability Zones and five more regions in Bahrain, Cape Town, Hong Kong SAR, Jakarta, and Milan.
Global Infrastructure Map-Jakarta and Hong Kong_update
Key_AZ

Regions & Number of Availability Zones

US East
N. Virginia (6), Ohio (3)

US West
N. California (3), Oregon (4)

Asia Pacific
Mumbai (2), Seoul (2), Singapore (3), Sydney (3), Tokyo (4), Osaka-Local (1)

Canada
Central (2)

China
Beijing (2), Ningxia (3)

Europe
Frankfurt (3), Ireland (3), London (3), Paris (3), Stockholm (3)

South America
São Paulo (3)

GovCloud (US)
US-East (3), US-West (3)

Key_Coming-Soon

New Region (Coming Soon)

Bahrain

Cape Town

Hong Kong SAR

Jakarta

Milan

Learn More 
#####EOF##### Blockchain on AWS

Blockchain on AWS

Easily build scalable blockchain and ledger solutions

AWS provides the simplest way to build scalable blockchain networks and ledger applications for your business

Blockchain technologies are often used to solve two types of customer needs. In the first case, multiple parties work with a centralized, trusted authority to maintain a complete and verifiable record of transactions. An example is a retail customer looking to connect its suppliers with a centralized ledger that maintains a transparent and verifiable history of information related to the movement of a product through its supply chain. In the other case, multiple parties transact in a decentralized manner without the need for a centralized, trusted authority. An example is a consortium of banks and export houses looking to perform cross-boundary transfer of assets (e.g. letter-of-credits) amongst each other, without a centralized authority acting as a liaison.

If you need a centralized ledger that records all application data changes, and maintains an immutable record of these changes, AWS provides a ledger database. This database is high-performance, immutable, and cryptographically verifiable, eliminating the need for building complex audit tables or setting up blockchain networks. If you need the immutable and verifiable capability provided by a ledger, and also want to allow multiple parties to transact without a trusted central authority, AWS provides a fully managed, scalable blockchain service. AWS’ blockchain service makes it easy to setup, deploy, and manage scalable blockchain networks, eliminating the need for you to rely on expensive consulting implementations.

 

Use Cases

blockchain-centralized@1.5x

Track and verify transactions with centralized ownership

Manufacturers want to store data from multiple systems into a centralized ledger that accurately tracks the production and distribution lineage of their products. In case of issues manufacturers can quickly trace the root cause of defects and take preventive actions.

HR and Payroll systems often have to track and maintain a record of an employee’s details such as payroll, bonus, benefits, and performance history. By implementing a centralized ledger, customers can easily maintain a complete record of the digital history of their employees in a single place.

Insurance: Insurance applications often need a way to better track the history of claim transactions. Instead of building complex auditing functionality using relational databases, insurance companies can use a ledger database to accurately maintain the history of claims over their entire lifetime.

blockchain-decentralized@1.5x

Execute transactions and contracts with decentralized ownership

Trade: Trade consortiums are looking to reduce time and complexity of cross-boundary payments and asset transfers (letter of credit) by directly transacting with multiple parties such as importers, exporters, insurance, and banks in a decentralized way.

Retail: Consortium of retailers want to partner with banks and third-party loyalty programs to streamline customer reward programs without needing a central entity that processes rewards.


Banking:
Syndicated loans are ones where a group of banks lend together to a single borrower. In a traditional syndicated loan, banks rely on faxes or emails to share complex information back-and-forth, which delays the process. Groups of banks are looking to execute transactions in a decentralized and trusted way to exchange information quickly and eliminate the need for an intermediary.

AWS Capabilities

Capabilities of ledgers with centralized ownership
Capabilities of blockchain networks with decentralized ownership
Centralized
 Central, trusted authority owns and manages the ledger, and is shared with any number of parties that are working together
Decentralized
Multiple parties can transact with one another without having to know or trust each other. Each party, known as a member, owns a peer node in the network
Immutable
Uses an append-only journal that stores every transaction into a block. Blocks are cryptographically-chained together in a sequence and cannot be deleted or modified by the central owner or any other entities.
Immutable
Committed transactions are stored in blocks and are cryptographically-chained together and cannot be modified. Once a transaction is committed, it is replicated across all members making it impossible to change or delete.
Verifiable
Uses cryptography to create a concise summary of change history. This secure summary, commonly known as a digest, can be used to cryptographically verify the lineage of the data in the ledger.
Verifiable
Each member stores a local copy of the ledger and can independently verify and ensure that the contents of the ledger are accurate. To make any change, members of the network need to validate a new transaction, keeping data across all peer organizations consistent
Transparent
Entire data history can be easily queried, providing a complete and transparent log of information.
Transparent
All committed transactions are attributable to one or more entities, providing complete transparency to all members. In permissioned blockchain frameworks, such as Hyperledger Fabric, transparency can be configurable such that only select group of peers can access information.
Fast
Ledgers with centralized trust don’t require distributed consensus to execute, allowing them to easily scale up and execute transactions faster than ledgers in common blockchain frameworks.
Removes intermediaries
Each peer organization can initiate a new transaction using encoded application logic. Once a transaction is initiated, it is replicated across all peers in the network, allowing multiple parties to access and validate the information. No intermediaries are needed to act as a liaison between the members, making complex transactions more efficient and less expensive.

Products

Amazon QLDB is a fully managed ledger database that provides a transparent, immutable, and cryptographically verifiable transaction log ‎owned by a central trusted authority. Amazon QLDB tracks each and every application data change and maintains a complete and verifiable history of changes over time.

Amazon QLDB

Amazon Quantum Ledger Database (QLDB) and Amazon Managed Blockchain provide the right tool for each job. Both of these fully managed services help companies manage business transactions that require full auditability, and remove the complexity and undifferentiated heavy lifting involved in implementing and managing a ledger database or creating and managing a blockchain network.

Learn more about Amazon QLDB here.

Amazon Managed Blockchain

Amazon Managed Blockchain is a fully managed service that makes it easy to create and manage scalable blockchain networks using popular open source frameworks Hyperledger Fabric and Ethereum. Amazon Managed Blockchain eliminates the overhead required to create the network, and automatically scales to meet the demands of thousands of applications running millions of transactions. Once your network is up and running, Managed Blockchain makes it easy to manage and maintain your blockchain network. It manages your certificates, lets you easily invite new members to join the network, and tracks operational metrics such as usage of compute, memory, and storage resources

Learn more about Amazon Managed Blockchain here.

AWS Blockchain Templates

For customers who are looking to manage their own blockchain network and just need an easy way to set up and get started, AWS Blockchain templates are the right fit.

Blockchain templates provide a fast and easy way to create and deploy secure blockchain networks using popular open source frameworks. These templates enable you to focus on building your blockchain applications instead of spending time and energy on manual setup of your blockchain network. AWS Blockchain Templates deploys the blockchain framework you choose as containers on an Amazon Elastic Container Service (ECS) cluster, or directly on an EC2 instance running Docker.

Learn more about AWS Blockchain Templates here.

AWS Blockchain Partners

AWS provides the broadest and deepest capabilities and the largest global infrastructure for building end-to-end blockchain platforms, cost efficiently and at scale. APN Technology and Consulting Partners offer a rapidly growing selection of blockchain and distributed ledger solutions with support for multiple protocols.

Learn about our APN Partners building Blockchain solutions here.

Customers

600x400-healthdirect_logo

Healthdirect Australia is a national, government-owned, not-for-profit organization that has been helping Australians manage their health and wellbeing for over a decade.

“Healthdirect Australia operates in a heavily regulated industry, and it is critical that our compliance data is correct and auditable. With Amazon QLDB we look forward to having a complete and verifiable history of every change in our system, making it simple to audit when and how we arrived at our current state. Regulatory compliance is fact of life for healthcare companies, and Amazon QLDB enables us to easily track the controls we have in place and understand how they have changed over time.”

Bruce Haefele - General Manager, Technology, Healthdirect Australia

guardian

The Guardian Life Insurance Company is a financial services and insurance company whose offerings include life and disability insurance, employee benefits, and dental insurance.

“Given our vast partner ecosystem, we are exploring the decentralization and immutable tracking benefits of blockchain for potential applications in our insurance business. We believe blockchain can improve the transparency and efficiency for stakeholders in these networks to transact, while still maintaining an independently verifiable lineage of activities. However, blockchain frameworks are complex and difficult to operate. With Amazon Managed Blockchain, we can now easily create Hyperledger Fabric blockchain networks to test and learn without worrying about managing the underlying infrastructure, networking, and software configuration."

Daniel Johnson - CTO and Head of Innovation, Guardian Life Insurance Company

Smaato

Smaato, one of the leading online ad exchanges in the world, sees over 20 billion bid requests/day pass through their exchange.

“All participants in the online advertising and real time bidding market segments are interested in transparency throughout the entire lifecycle of an online ad auction, from the initial auction, to the winning bid, and ultimately through to the final impression delivery and who it’s actually shown to. Since we act as a centralized point of trust in this value chain, we’re really excited about Amazon QLDB. It offers a scalable, immutable, and cryptographically verifiable ledger that would allow us to maintain a complete and auditable record of all our auctions. We’re looking forward to collaborating with AWS and the Amazon Quantum Ledger Database team to bring more transparency to our ecosystem.”

Ragnar Kruse - CEO, Smaato

600x400_DTCC-Logo

The Depository Trust & Clearing Corporation (DTCC) provides industry-leading solutions that promote the stability and certainty of global financial markets.

“As critical financial market infrastructure, the industry relies on us to provide innovative solutions that reduce risk, increase transparency and evolve with market and regulatory needs. We believe that blockchain technology represents a generational opportunity to re-imagine post-trade infrastructure. We are pleased to be using Amazon Managed Blockchain to explore possibilities with Hyperledger Fabric, where we can continue to lead industry initiatives around the exploration and adoption of Blockchain. Amazon Managed Blockchain automates the deployment of blockchain infrastructure, bringing high availability and durability in a fully managed package, accelerating the adoption of distributed ledger technology.”

Rob Palatnick - Managing Director, Chief Technology Architect, DTCC.

#####EOF##### JavaScript | Tutorials, APIs, SDKs, Docs | AWS Developer CenterJavaScript | Tutorials, APIs, SDKs, Docs | AWS Developer Center

Explore Javascript on AWS

Find all the tools, documentation, and sample code you need to develop secure, reliable, and scalable Javascript applications on the AWS cloud.

javascript programming language

Learn

Dive deep and discover. Expand and explore.

Read and watch guidance from experts on AWS. See how to get the most from AWS. Find solutions to common challenges. Gain the knowledge to get the most from the AWS cloud.

Develop

Design and code. Build and test. Run and debug.

Get started building browser applications and server applications with the AWS SDK for JavaScript. Get the libraries, code samples, and documentation you need to build on AWS.

Connect

Raise questions. Get answers. Connect to AWS.

Join the community of developers developing secure, reliable, and scalable applications on the AWS cloud. Make the connections that will shift your development into the fast lane.

#####EOF##### AWS Marketplace: Homepage
Sign in
Categories
Migration Mapping Assistant Your Saved List Partners Sell in AWS Marketplace Amazon Web Services Home Help

Featured Products

Featured Container Products

Popular Products

New Product Spotlight

#####EOF##### Amazon.com : Travalo Classic Refillable Perfume Spray, Silver : Refillable Cosmetic Containers : Beauty



Currently unavailable.
We don't know when or if this item will be back in stock.

Travalo Classic Refillable Perfume Spray, Silver

by Travalo
4.0 out of 5 stars 154 customer reviews

About the product
  • Available in 8 Hot Colors
  • Simply pump to fill! Refills in seconds directly from a standard perfume bottle
  • Tsa-approved for carry-on luggage
Amazon FSA Store


Discover Related Products

Travalo Classic Refillable Perfume Spray Gold, 4.0mL
$10.99
Added to Cart
Travalo Classic Refillable Perfume Spray, Red
$15.28
Added to Cart
Travalo Pink Aluminum 4.0ml Mini Refillable Perfume Spray Case
$15.68
Added to Cart
Added to your Cart

Have a question?

Find answers in product info, Q&As, reviews

Please make sure that you are posting in the form of a question.

Don't see what you're looking for?
There was a problem completing your request. Please try your search again later.
All Product Information Customer Q&A's Customer Reviews

Product description

Color:Silver

The days of carrying around heavy, glass perfume bottles are long gone. With the Travalo Classic Refillable Fragrance Atomizer, you can take your perfume and cologne anywhere you go- in your purse, pocket or backpack. One of travel retail's most striking stories in recent years!


Product details

Color: Silver
  • Product Dimensions: 5 x 1.5 x 0.7 inches ; 0.16 ounces
  • Shipping Weight: 0.8 ounces
  • ASIN: B0091JL3IO
  • UPC: 817016010486
  • Item model number: Classic-Silver-VE
  • Average Customer Review: 4.0 out of 5 stars 154 customer reviews
  • Amazon Best Sellers Rank: #217,009 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)
  • Would you like to tell us about a lower price?


Important information

Safety Warning
Please read all label information on delivery.

Directions
Remove the spray head from your perfume bottle.Place your Travalo upright on top of the nozzle pegSimply pump it up and down to fill.Keep pumping until the fragrance level reaches the top of the window.Do not overfill

Customer Questions & Answers

154 customer reviews

4.0 out of 5 stars

By customer groups & interests
Travel
3.9
Fragrance
4.0

Review this product

Share your thoughts with other customers

Read reviews that mention

February 11, 2014
Color: SilverVerified Purchase
17 people found this helpful
Comment Report abuse
January 2, 2019
Color: SilverVerified Purchase
One person found this helpful
Comment Report abuse
June 26, 2017
Color: SilverVerified Purchase
2 people found this helpful
Comment Report abuse
March 27, 2018
Color: SilverVerified Purchase
2 people found this helpful
Comment Report abuse
June 17, 2017
Color: SilverVerified Purchase
2 people found this helpful
Comment Report abuse
September 10, 2018
Color: SilverVerified Purchase
review imagereview imagereview imagereview imagereview imagereview imagereview imagereview image
One person found this helpful
Comment Report abuse
June 26, 2018
Color: SilverVerified Purchase
review image
One person found this helpful
Comment Report abuse
May 2, 2017
Color: SilverVerified Purchase
One person found this helpful
Comment Report abuse
Amazon FSA Store

Pages with related products. See and discover other items: cologne under 20 dollars, perfume sprays

Disclaimer: While we work to ensure that product information is correct, on occasion manufacturers may alter their ingredient lists. Actual product packaging and materials may contain more and/or different information than that shown on our Web site. We recommend that you do not solely rely on the information presented and that you always read labels, warnings, and directions before using or consuming a product. For additional information about a product, please contact the manufacturer. Content on this site is for reference purposes and is not intended to substitute for advice given by a physician, pharmacist, or other licensed health-care professional. You should not use this information as self-diagnosis or for treating a health problem or disease. Contact your health-care provider immediately if you suspect that you have a medical problem. Information and statements regarding dietary supplements have not been evaluated by the Food and Drug Administration and are not intended to diagnose, treat, cure, or prevent any disease or health condition. Amazon.com assumes no liability for inaccuracies or misstatements about products.


#####EOF##### 클라우드 서비스 | 클라우드 컴퓨팅 솔루션| Amazon Web Services

AWS 제품 살펴보기

컴퓨팅
기계 학습
관리 및 거버넌스
보안, 자격 증명 및 규정 준수

고객 혁신 지원

  • 엔터프라이즈 변혁
  • 예측 분석
  • 기계 학습
  • 서버리스
  • 게임
  • 엔터프라이즈 애플리케이션
  • 엔터프라이즈 변혁
  • PI-C1_Logo

    AWS를 사용하여 뱅킹을 재창조하는 Capital One

    Capital One이 어떻게 교육, 장기 계획, 고객 요구에 대한 끊임없는 집중을 통해 클라우드 우선 전략을 구현했는지 알아보십시오.
    자세히 알아보기 
    PI-C1_Mobile_Step-1

    고객에 집중

    2014년에 Capital One은 이제 막 프라이빗 클라우드 기능을 사용하기 시작하면서 AWS도 실험해 보는 단계였습니다. 이 회사는 고객이 원하는 기능을 최대한 빨리 구축하기 위해 AWS를 선택했습니다.

    PI-C1_Mobile_Step-2

    어려운 문제 먼저 해결

    금융 기관인 Capital One에 보안과 규정 준수는 매우 중요합니다. 이러한 요구 사항을 해결하기 위해 Capital One은 AWS로 워크로드를 이전하기 전에 클라우드 위험 프레임워크를 구축하고 클라우드 거버넌스 기능을 구현했습니다.

    PI-C1_Mobile_Step-3

    교육: 클라우드의 핵심

    Capital One은 AWS와 직접 작업을 수행하는 엔지니어와 클라우드 컴퓨팅의 힘을 옹호할 수 있어야 하는 비기술 이해관계자를 위한 클라우드 교육 프로그램을 제공합니다. 이 회사는 현재 전 세계에서 직원들이 AWS 자격증을 가장 많이 취득한 엔터프라이즈 3위에 올라 있습니다.

    PI-C1_Mobile_Step-4

    클라우드의 이점 실현

    AWS를 통해 Capital One은 새로운 제품을 몇 달 또는 몇 년이 아니라 몇 주 만에 시장에 출시하고, 기계 학습을 사용하여 고객 경험을 개선하고, 최고의 개발자와 엔지니어를 유치합니다. 이 모든 것이 회사가 가장 중요한 목표인 고객을 위한 탁월한 경험을 창출하는 데 도움이 됩니다.

  • 예측 분석
  • F1-Insights-logo-power-by-AWS

    Formula One Group에서 Amazon SageMaker를 사용하여 레이스를 최적화

    Formula 1에서 어떻게 Amazon SageMaker와 다른 AWS 서비스를 사용하여 레이스 의사 결정을 최적화하고 팬 경험을 개선하는지 알아보십시오.
    자세히 알아보기 
    PI-F1-1-mobile-beginning-a-transformation-ending

    변혁 시작

    Formula One Group은 인프라 대부분을 온프레미스 데이터 센터에서 AWS로 이전하고 Amazon SageMaker를 비롯한 AWS 기계 학습 서비스에서 이를 표준화하고 있습니다.

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    기계 학습으로 레이스 최적화

    Formula 1 데이터 과학자들은 지난 65년간 차량에서 수집된 레이스 기록 데이터를 사용하여 레이스를 예측하고 팀이 레이스 도중 의사 결정을 최적화하는 데 도움이 되는 딥 러닝 모델을 교육하고 있습니다. 이 모델은 팀이 차량을 피트로 불려야 할 시점을 예측하고, 타이어 교체를 위한 최적의 타이밍을 결정하고, 드라이버의 상태를 평가할 수 있습니다.

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    트랙 정보를 팬에게 공유

    Formula 1은 AWS 데이터 스트리밍, 분석 및 미디어 서비스를 사용하여 5억 명이 넘는 팬에게 운전자 의사 결정과 차량 성능에 대한 통찰력을 제공합니다.

    PI-F1-4-mobile-building-for-the-future-ending

    미래를 위한 구축

    Formula 1이 AWS의 확장 가능한 환경에서 고성능 컴퓨팅 워크로드를 실행하므로 용량에 대한 걱정 없이 Formula 1 레이싱 경험, 차량 디자인 등을 혁신할 수 있습니다.

  • 기계 학습
  • Logo_Statcast-AI

    MLB에서 AWS를 공식 기계 학습 공급자로 선정

    미국의 프로야구 리그에서 어떻게 AWS Machine Learning을 사용하여 통계에 의미를 부여하는지 알아보십시오
    자세히 알아보기 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    딥 러닝을 위한 기반

    MLB는 수십 년 동안 선수에 대한 통계 데이터를 수집해왔으며 2015년에 AWS를 사용하여 경기 통계를 수집 및 배포하여 팬 경험을 향상하기 시작했습니다.

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    개발자 지원

    MLB는 Amazon Sagemaker를 사용하여 개발자 및 데이터 과학자가 모든 규모의 기계 학습 모델을 쉽고 빠르게 구축, 교육 및 배포할 수 있게 지원하고 있습니다.

    PI-MLB-3-Lightening the Load-ending stage

    로드 감소

    이러한 모델은 MLB가 점수 기록, 게임 노트 캡처, 투구 분류와 같은 레코드 유지 및 통계와 관련된 시간 소모적인 수동 프로세스를 없애는 데 도움이 됩니다.

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    게임 개인화

    MLB는 Amazon ML Solutions Lab과 협력하여 투구 예측 정확성 테스트, 개인화된 시청자 경험 생성을 비롯하여 선수 성과를 분석하는 추적 기술인 Statcast를 지속적으로 개선할 계획입니다.

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    인공 지능의 홈런

    MLB는 인공 지능을 사용하여 혁신을 계속할 것입니다. 이 조직에서는 Amazon Comprehend를 사용하여 상징적인 아나운서를 흉내 내는 라이브 게임의 대본을 만들 수 있는 언어 모델을 구축할 계획입니다.

  • 서버리스
  • Matson-logo

    AWS에서 글로벌 운송 및 물류 비즈니스를 운영하는 Matson

    Matson이 어떻게 AWS를 사용하여 혁신과 세계적 수준의 고객 서비스를 추진하는 동시에 운영 안정성, 보안 및 인프라 비용 절감을 실현하는지 알아보십시오.
    자세히 알아보기 
    PI-Matson-Mobile_Step-1

    실시간 컨테이너 추적

    Matson은 글로벌 컨테이너 추적을 위해 대표 모바일 애플리케이션을 구축했습니다. 고객은 이를 사용해 선적 화물을 실시간으로 추적할 수 있습니다. 애플리케이션의 다른 유용한 기능으로는 대화식 선박 일정 검색, 위치 기반 항구 지도 조회, 라이브 출입문 카메라 피드를 들 수 있습니다.

    PI-Matson-Mobile_Step-2

    모바일 디바이스 액세스

    모든 모바일 디바이스는 Amazon API Gateway를 통해 AWS에 액세스합니다. 이는 Matson의 기존 가상 사설 클라우드 내 리소스에 액세스할 수 있는 고가용성 엣지 로케이션의 엔드포인트를 제공합니다.

    PI-Matson-Mobile_Step-3

    서버리스 컴퓨팅

    AWS Lambda 함수는 마이크로 서비스 패턴을 사용해 설계되었으며 선적 추적이나 선박 일정과 같이 바다를 기반으로 한 특정 비즈니스 맥락에서 모델링되었습니다. 

    PI-Matson-Mobile_Step-4

    데이터베이스 구성 및 스토리지

    Amazon DynamoDB는 구성뿐만 아니라 사용자 피드백 구성과 모바일 디바이스에서 전송된 사용자 피드백 알림도 관리합니다. DynamoDB 스트림은 Matson의 고객 서비스 팀에 실시간 알림을 제공합니다.  

    PI-Matson-Mobile_Step-5

    데이터 모니터링 및 알림

    Matson의 고객은 정확한 최신 컨테이너 추적 및 선박 상태 정보를 활용합니다. 시스템 이벤트의 모니터링 및 알림 기능은 Amazon CloudWatch, Amazon SNS, Amazon SES, AWS Lambda 및 CloudWatch Logs를 사용해 구현할 수 있습니다.  

    PI-Matson-Mobile_Step-6

    엔드 투 엔드 서버리스 애플리케이션

    Matson은 이제 유지 관리할 인프라 없이 선적을 추적할 수 있는 엔드 투 엔드 서버리스 애플리케이션을 고객에게 제공할 수 있습니다.

  • 게임
  • PI-Epic_Logo_Final
    전 세계를 대상으로 하는 게임인 Fortnite를 지원하기 위해 AWS를 사용하는 Epic Games
    Epic Games가 어떻게 AWS를 사용하여 전 세계에서 2억 명이 넘는 플레이어에게 Fortnite를 제공하는지 알아보십시오.
    자세히 알아보기 
    PI-Epic-Mobile_Step-1

    클라우드에 기반 구축

    Epic Games는 2012년부터 AWS를 사용해 왔으며 현재는 모든 시스템을 AWS C클라우드로 이전하여 전 세계 게임 서버 플릿, 백엔드 플랫폼 시스템, 데이터베이스, 웹 사이트, 분석 파이프라인 및 처리 시스템을 AWS에서 실행하고 있습니다.

    PI-Epic-Mobile_Step-2

    하룻밤의 기적

    Epic Games는 2017년에 크로스플랫폼 멀티플레이어 게임인 Fortnite를 출시했으며 하룻밤 만에 돌풍을 일으켰습니다. 첫해에 Fortnite의 사용자 기반은 전 세계적으로 2억 명의 플레이어로 100배 이상 성장했습니다.

    PI-Epic-Mobile_Step-3

    규모의 경계를 넘어

    AWS는 Fortnite의 성공에 필수적인 요소입니다. Epic Games는 AWS를 사용하여 용량 걱정 없이 수억 명의 초대된 사용자가 참여하는 게임 내 이벤트를 호스팅하고, 분당 1억 2천 5백만 건의 이벤트를 분석 파이프라인으로 수집하고, 한 달에 5PB 이상씩 증가하는 데이터 웨어하우스를 처리합니다.

    PI-Epic-Mobile_Step-4

    최고의 게임 경험 제공

    Epic Games는 AWS를 사용하여 끊임없이 플레이어의 경험을 개선하고 새롭고 흥미진진한 게임 및 게임 요소를 제공합니다. 이 회사는 기계 학습 및 컨테이너 서비스를 포함해 앞으로 AWS 서비스 사용을 확대할 계획입니다.

  • 엔터프라이즈 애플리케이션
  • BPP_ylw_logo

    중요 비즈니스 앱을 위한 효율성을 향상하고 비용 민첩성 및 속도를 개선하는 BP

    BP가 어떻게 SAP 애플리케이션 제품군을 간소화 및 현대화하여 사용자 경험을 개선하는 동시에 비용 민첩성과 성능을 향상했는지 알아보십시오.
    자세히 알아보기 
    PI-BP-Mobile_Step-1

    중요 비즈니스 앱 관리

    BP의 IT 조직은 공급망, 조달, 재무 등을 위해 전 세계에서 수천 명의 직원이 사용하는 SAP 애플리케이션을 관리합니다. 

    PI-BP-Mobile_Step-2

    속도와 비용 민첩성 향상

    속도와 비용 민첩성을 향상하기 위해 BP에서는 Amazon EC2를 사용하여 핵심 비즈니스 앱을 클라우드로 이전했습니다. 또한, 팀에서는 규모를 확장하고 실시간 분석을 지원하기 위해 EC2 X1 인스턴스를 구축했습니다.

    PI-BP-Mobile_Step-3

    성능 향상

    팀에서는 이제 몇 주 또는 몇 달이 아니라 몇 시간 안에 온디맨드로 시스템을 가동할 수 있습니다. BP는 속도가 40% 향상된 Lubricants ERP 시스템을 비롯하여 전반적으로 성능이 향상되고 있습니다. 

    PI-BP-Mobile_Step-4

    데이터 보안

    클라우드 마이그레이션의 일환으로 BP는 AWS Config, AWS Identity and Access Management(IAM), Amazon CloudWatch 및 AWS Trusted Advisor를 사용하여 보안 표준을 재설정했습니다. 이러한 새로운 표준은 BP가 IT 조직 운영을 위한 안전한 프레임워크를 개발하는 데 도움이 되었습니다.

AWSMP_logo_new-RGB

검색. 구매. 배포.

AWS Marketplace는 AWS에서 실행되는 소프트웨어를 쉽게 검색, 테스트, 구매 및 배포할 수 있도록 수천 개의 Independent Software Vendor(ISV) 소프트웨어 제품 목록을 제공하는 디지털 카탈로그입니다.
자세히 알아보기 

AWS 솔루션 살펴보기

60-machine-learning
강력한 서비스와 플랫폼으로 구축하고, 어디에서나 가장 광범위한 기계 학습 프레임워크를 지원하십시오.
60-analytics
하나의 중앙 집중식 리포지토리에서 모든 데이터를 안전하게 저장, 분류 및 분석합니다.
60-IoT
물리적 세계를 클라우드에 연결하는 유비쿼터스 디바이스 시스템.
60-serverless
서버에 대한 고민 없이 애플리케이션과 서비스를 구축하고 실행합니다.
60-containers
경량 애플리케이션을 패키징 및 배포하고 애플리케이션을 어디에서든 쉽게 실행하고 확장할 수 있도록 일관된 이동식 소프트웨어 환경을 제공합니다.
60-enterprise
대기업의 고유한 보안, 규정 준수, 프라이버시 및 거버넌스 요구 사항에 맞춰 특별히 설계된 완성된 서비스 세트를 사용해 구축하십시오.
60-storage
페타바이트 규모의 백업, 재해 복구 및 데이터 아카이브를 위한 안정적이고 비용 효율적인 옵션.
60-windows-workloads
Microsoft 애플리케이션을 위한 유연하고 확장 가능한 컴퓨팅 파워. Windows 워크로드를 손쉽게 관리 및 보호합니다.

가장 까다로운 요구 사항에 맞게 설계

icon-security

보안

가장 까다로운 요구 사항을 충족하는 포괄적인 보안 기능.
icon-compliant

규정 준수

강화된 제어 기능, 감사 및 광범위한 보안 승인
icon-hybrid

하이브리드

온프레미스 인프라를 클라우드로 확장하는 하이브리드 아키텍처 구축.
icon-scalable

확장성

필요한 만큼의 리소스에 액세스하고 필요에 따라 몇 분 만에 확장 또는 축소.

고객의 AWS 구축 사례 알아보기

AWS 리전의 글로벌 네트워크

AWS 클라우드는 전 세계 20개의 지리적 리전 내에 61개의 가용 영역을 운영하고 있으며, 앞으로 바레인, 케이프타운, 홍콩 SAR 및 밀라노에 4개의 리전과 12개의 가용 영역을 추가할 계획입니다.
2019 Infra Map - PDX
Key_AZ

리전 및 가용 영역 수

미국 동부
버지니아 북부(6), 오하이오(3)

미국 서부
캘리포니아 북부(3), 오레곤(4)

아시아 태평양
뭄바이(2), 서울(2), 싱가포르(3), 시드니(3), 도쿄(4), 오사카 로컬(1)

캐나다
중부(2)

중국
베이징(2), 닝샤(3)

유럽
프랑크푸르트(3), 아일랜드(3), 런던(3), 파리(3), 스톡홀름(3)

남아메리카
상파울루(3)

GovCloud(US)
US-East(3), US-West(3)

Key_Coming-Soon

새로운 리전(제공 예정)

바레인

케이프타운

홍콩 SAR

밀라노

자세히 알아보기 
#####EOF##### AWS | Power & Utilities - Amazon Web Services

AWS for Power & Utilities

Powering digital transformation and innovation in utilities

With the emergence of renewable energy sources, and the digitization, decentralization and consumerization of energy, the AWS cloud provides the tools for power and utilities companies to navigate new business models, deliver energy more reliably, and implement a smarter, more distributed grid. AWS gives power and utilities companies the foundation to focus on delivering the best customer experience, to achieve operational and cost efficiencies while meeting demand securely and reliably, the flexibility to evolve their business model and innovate in a rapidly changing industry, and the critical business insights to transform the industry.

Learn why power and utilities customers choose to innovate on AWS

Benefits

Operational Efficiency and Excellence

AWS provides elastic, cost-effective compute and storage capacity so you can quickly provision resources to run demanding high-performance workloads like demand response and weather forecasting.

Secure, Compliant, and Reliable

With AWS, you take advantage of a scalable, reliable, and secure global computing infrastructure, that also powers Amazon.com.

Reduced Time to Business Insights

Leverage a comprehensive breadth of the latest analytic tools to harmonize large volumes of data to fuel insights and innovation around how energy is generated, provisioned, and consumed.

Build Innovative Applications Fast

AWS provides the development platform to rapidly develop innovative new applications, such as to detect and service outages or to help consumers manage energy usage. Spend less time on infrastructure and more on building applications to deliver better customer experiences.

Cloud Adoption Unleashes Greater Value for Power and Utility Companies

The power and utility industry is undergoing a digital transformation. Driving this evolution are the growing opportunities that exist to harness data and analytics to drive better business decisions and outcomes with an emphasis on delivering the best customer experience.

This Technology Spotlight examines the key trends influencing cloud adoption in the power and utility industry and the enabling technologies that help companies pursue digital transformation.

Case studies

Leading power & utilities companies are innovating with Amazon Web Services. 

View all case studies »

600x400_Enel_Logo
600x400_SGN_Logo
600x400_British-Gas_Logo
600x400_PG&E_Logo
600x400_Talen-Energy_Logo
600x400_RWE_Logo
600x400_Veolia_Logo
600x400_Havenpower_Logo_Gray

Get started

Leading companies in the power & utilities industry are already using AWS. Contact our experts and start your own AWS Cloud journey today.

#####EOF##### AWS Management Console

AWS Management Console

Everything you need to access and manage the AWS cloud — in one web interface.

The AWS Management Console* brings the unmatched breadth and depth of AWS right to your computer or mobile phone with a secure, easy-to-access, web-based portal. Discover new services, manage your entire account, build new applications, and learn how to do even more with AWS.

aws-management-console

Get started fast with the AWS Management Console. All you need is an AWS account and a supported web browser.

Console overview

What can you do with the AWS Management Console?

The console makes it easy to find new AWS services, configure services, view service usage, and so much more. From updating user groups to building applications to troubleshooting issues, with the Console, you can take action quickly.

Page-Illo-AWS-Management-ConsoleSign-out-Console-Try-AWS

Try out any AWS service with just a few clicks

The Console offers over 150 services you can configure, launch, and test to get hands-on experience with AWS. With the Console’s automated wizards and workflows, it’s even easier to quickly deploy and test common workloads. There’s also a resource library featuring articles and tips from AWS experts, Getting Started tutorials, on-demand webinars, reference deployment templates, and more.

Learn more »

Page-Illo-AWS-Management-ConsoleSign-out-Console-Build-and-Scale

Build and scale powerful applications

Use the Console and its API, CLI, CloudFormation templates, and other toolkits to build scalable architectures in any AWS data center around the world. You can customize your experience by pinning favorites and organize projects with resource groups and the tag editor. Plus, you’re only one click away from the AWS Marketplace where you’ll find hundreds of popular software products that run on AWS. 

Learn more »

Page-Illo-AWS-Management-Console-Sign-out-Console-Manage-and-Monitor

Manage and monitor your account

Oversee all administrative aspects of your AWS account from your desktop or mobile device. You can view your usage and monthly spending by service, set up AWS IAM users and groups, configure permissions, and manage security credentials. You can also quickly troubleshoot issues through visual monitoring. If you need extra help, submit a support ticket right from the Console to connect with an AWS expert.

Learn more »

Accessing the AWS Management Console

Requirements

All you need is an existing AWS account and a supported browser. See our FAQs for a complete list of supported browsers and platforms.

Learn more »

Mobile App

With the AWS Console mobile app, you can quickly and easily view your existing resources, including CloudWatch alarms, and perform operational tasks from your mobile device. Download our mobile app from Amazon Appstore, Google Play, or iTunes.

Learn more »

Get started

AWS-Management-Console_Sign-Up_Icon

Sign up for an AWS account

Creating an AWS account is free and gives you immediate access to the AWS Free Tier

Sign up »
AWS-Management-Console_Sign-out-Console_Icon

Enter the Management Console

Log in to your account with your username and password and access to the Management Console on any device

Log in »
AWS-Management-Console_Start-Building_Icon

Start building with AWS

Test out services and, when you’re ready, build your production solution quickly and easily

Get Started »
*All IaaS AWS administration, management, and access functions in the AWS Console are available in the AWS API and CLI. New AWS IaaS features and services provide full AWS Console functionality through the API and CLI at launch or within 180 days of launch.
#####EOF##### The Soul of an Octopus: A Surprising Exploration into the Wonder of Consciousness Reprint, Sy Montgomery - Amazon.com

The Soul of an Octopus: A Surprising Exploration into the Wonder of Consciousness Reprint Edition, Kindle Edition

4.5 out of 5 stars 868 customer reviews
Audible Sample
Playing...
Loading...
Paused
ISBN-13: 978-1451697728
ISBN-10: 1451697724
Why is ISBN important?
ISBN
This bar-code number lets you verify that you're getting exactly the right version or edition of a book. The 13-digit and 10-digit formats both work.
Scan an ISBN with your phone
Use the Amazon App to scan ISBNs and compare prices.
Kindle App Ad
<Embed>
Buy
$11.99
Price set by seller.

Deliver to your Kindle or other device


Buy for others

Give as a gift or purchase for a team or group. Learn more

Buying and sending eBooks to others


Select quantity
Buy and send eBooks
Recipients can read on any device

Additional gift options are available when buying one eBook at a time. Learn more


These ebooks can only be redeemed by recipients in the US. Redemption links and eBooks cannot be resold.

Quantity:
This item has a maximum order quantity limit.
See all 9 formats and editions Hide other formats and editions
Price
New from Used from
eTextbook
$11.99

"Maybe You Should Talk to Someone" by Lori Gottlieb
"This is a daring, delightful, and transformative book." ―Arianna Huffington, Founder, Huffington Post Learn more

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Editorial Reviews

Review

“Enter the mysterious intelligent alien world of the octopus. Experience a real intelligence based on a sense of touch that humans can barely imagine.” (Temple Grandin, author of Animals in Translation )

"Renowned author Sy Montgomery's latest gem is a must read for those who want to dissolve the human-constructed borders between "them" (other animals) and us. Surely, there are large differences among nonhuman animals and between nonhuman and human animals, but there also are many basic similarities. Connecting with other animals is part of the essential and personal process of rewilding and reconnecting with other animals, and The Soul of an Octopus is just what is needed to close the gap." (Marc Bekoff, author of The Emotional lives of Animals )

"Diving deeper than Jules Verne ever dreamed, The Soul of an Octopus is a page-turning adventure that will leave you breathless. Has science ever been this deliciously hallucinatory? Boneless and beautiful, the characters here are not only big-hearted, they're multi-hearted, as well as smart, charming, affectionate...and, of course, ambidextrous. If there is a Mother Nature, her name is Sy Montgomery." (Vicki Constantine Croke, author of Elephant Company )

"In The Soul of an Octopus, Sy Montgomery immerses readers into an intriguing, seductive world just beneath the ocean waves and the lives of the creatures living within. In this beautifully written book, she brings empathy, insight, and an enchanting sense of wonderment to the bonds we inherently share with other beings—even those seeming far different from us." (Vint Virga, DVM The Soul of All Living Creatures)

“A captivating book on an intelligence as ‘alien’ as one from outer space. And its not science fiction.” (Bernd Heinrich, author of Mind of the Raven )

"Can an octopus have a mind and emotions, let alone a soul? Sy Montgomery faces these questions head-on in her engaging new book as she explores the world of octopuses, making friends with several and finding heartbreak when they die. They aren't, she discovers, simply brainless invertebrates, but personable, playful, conscious beings. Montgomery's enthusiasm for animals most of us rarely see is infectious, and readers will come away with a new appreciation for what it means to be an octopus." (Virginia Morell, author of ANIMAL WISE: How We Know Animals Think and Feel )

"With apparent delight, Montgomery puts readers inside the world of these amazing creatures. A fascinating glimpse into an alien consciousness." (Kirkus Reviews )

"The Soul of an Octopus is one of those works that makes you hope we can save the planet if for no other reason than to preserve the wondrous beasts we are fortunate enough to share it with." (Steve Lysaker, Outward Hounds )

"Sy Montgomery’s joyful passion for these intelligent and fascinating creatures will have you rethinking that order of calamari." (Library Journal Editors' Spring Pick)

"Sweet moments are at the heart of Montgomery's compassionate, wise and tender new book... Only a writer of her talent could make readers care about octopuses as individuals... Joins a growing body of literature that asks us to rethink our connection to nonhumans who may be more like us than we had supposed." (St. Paul Pioneer Press)

"I can't do justice to the wonder of this book, the joy and pain and fellowship and grief that Montgomery brings to life with her words...Completely engrossing and accessible." (malcolmavenuereview.blog)

"Montgomery's passion for other species is infectious...[Her] warmth and exuberance...make good reading, and her awe and admiration are uplifting... I felt informed, moved, and inspird - whieh is all a reader could possibly hope for from a book." (Union Leader)

"An engaging work of natural science... There is clearly something about the octopus’s weird beauty that fires the imaginations of explorers, scientists, writers." (The Daily Mail - UK)

"Delightful." (NATURE)

"Fascinating... touching... informative... Entertaining books like The Soul of an Octopus remind us of just how much we not only have to learn from fellow creatures, but that they can have a positive impact on our lives."

(DAILY BEAST)

"A gripping new book bridges the gap between humans and one of this planet's strangest and most wondrous creatures." (Global Newswire)

"Journalistic immersion... allows Montgomery to deliver a deeper understanding of the 'other,' thereby adding to our understanding of ourselves. A good book might illuminate something you knew little about, transform your world view, or move you in ways you didn't think possible. The Soul of an Octopus delivers on all three." (New Scientist)

"Charming and moving...with extraordinary scientific research." (The Guardian (UK))

"[Montgomery's] compassion and respect for the species make for a buoying read." (Newsday)

"Sy Montgomery's The Soul of an Octopus does for the creature what Helen Macdonald 's H Is for Hawk did for raptors." (New Statesman (UK))

"Informative and entertaining, part memoir and part scientific exploration, reminds us that if we are the best creatures on the planet at thinking, we can benefit by thinking about the creatures that may be doing it in some other way." (Columbus Dispatch)

"Naturalist Montgomery writes exceptionally affecting and enlightening books inspired by both rigorous scientific curiosity and enraptured wonder and empathy for all living beings...In prose as gripping and entwining as her
subjects’ many arms, Montgomery chronicles the octopus’ phenomenal strength, dexterity, speed... She also tells funny and moving stories about her friendships... Montgomery’s uniquely intimate portrait of the elusive octopus profoundly recalibrates our perception of consciousness, communication, and community." (Booklist (STARRED review))

“What makes this book unusual is that Montgomery doesn't try to answer this question [about consciousness] by sifting through piles of research. Instead, she ... listens. She develops extensive relationships with a handful of individual octopuses at the New England Aquarium, each with its own personality, its mundane dramas and tragedies. She records every small moment, treating each octopus like a character in a Jane Austen novel. The effect is wonderful. By the end, it's hard to shake the feeling that these bizarre creatures really do have rich internal lives, even if we still lack the imagination to grasp them entirely.“ (Vox)

“Montgomery’s journey of discovery encourages the reader to reflect on his or her own definition of consciousness and 'soul.' In the end, the book leaves one with the impression that our way of interacting with the world is not the only way or the most superior way and that sentience similarly comes in a variety of equally astounding forms, all worthy of recognition and compassion.” (Science Magazine)

“Montgomery’s journey of discovery encourages the reader to reflect on his or her own definition of consciousness and “soul.” In the end, the book leaves one with the impression that our way of interacting with the world is not the only way or the most superior way and that sentience similarly comes in a variety of equally astounding forms, all worthy of recognition and compassion.” (Shelf Awareness, Best Book of 2015 List)

A Notable Book of the Year (Huffington Post)

"The Soul of an Octopus is an astoundingly beautiful read in its entirety, at once scientifically illuminating and deeply poetic, and is indeed a worthy addition to the best science books of the year." (Science Friday, NPR)

"This miraculously insightful and enchanting book expands our understanding of consciousness and sheds light on the very notion of what we call a “soul.”…. The book’s greatest reward isn’t the fascinating science — although that is riveting and ablaze with rigor — but Montgomery’s bewitching prose, pouring from the soul of a literary naturalist who paints the marvels of the ocean’s depths like Thoreau did the marvels of the New England woods." (Brainpickings)

“Award-winning author Montgomery reveals [octopuses’] beauty. The book takes readers on a vivid tour of their complex inner world… explores their proclivities, their relationships and their intelligence and ultimately tries to deduce whether they possess consciousness… It is hard to come away from this book without a new appreciation for these wonderful creatures.” (Scientific American)

2016 Notable Book (American Library Association)

About the Author

Sy Montgomery is a naturalist, documentary scriptwriter, and author of twenty acclaimed books of nonfiction for adults and children, including the National Book Award finalist The Soul of an Octopus and the memoir The Good Good Pig, a New York Times bestseller. The recipient of numerous honors, including lifetime achievement awards from the Humane Society and the New England Booksellers Association, she lives in New Hampshire with her husband, border collie, and flock of chickens.

Product details

  • File Size: 15298 KB
  • Print Length: 273 pages
  • Publisher: Atria Books; Reprint edition (July 12, 2016)
  • Publication Date: July 12, 2016
  • Sold by: Simon and Schuster Digital Sales Inc
  • Language: English
  • ASIN: B01HMXRU82
  • Text-to-Speech: Enabled
  • X-Ray:
  • Word Wise: Enabled
  • Lending: Not Enabled
  • Enhanced Typesetting: Enabled
  • Amazon Best Sellers Rank: #24,900 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  • Would you like to tell us about a lower price?


868 customer reviews

4.5 out of 5 stars

By customer groups & interests
Ethology
3.7
Biology
4.3
Marine Biology
4.1
See more

Review this product

Share your thoughts with other customers

Read reviews that mention

March 26, 2016
Format: HardcoverVerified Purchase
396 people found this helpful
Comment Report abuse
March 11, 2017
Format: PaperbackVerified Purchase
132 people found this helpful
Comment Report abuse
January 15, 2016
Format: HardcoverVerified Purchase
876 people found this helpful
Comment Report abuse
March 5, 2017
Format: Kindle Edition with Audio/VideoVerified Purchase
110 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

The Soul of an Octopus: A Surprising Exploration into the Wonder of Consciousness
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: The Soul of an Octopus: A Surprising Exploration into the Wonder of Consciousness
#####EOF##### Amazon.com: Sapiens: A Brief History of Humankind eBook: Yuval Noah Harari: Kindle Store

Buying Options

Kindle Price: $14.99

Save $8.00 (35%)

These promotions will be applied to this item:

Some promotions may be combined; others are not eligible to be combined with other offers. For details, please see the Terms & Conditions associated with these promotions.

Deliver to your Kindle or other device

Buy for others

Give as a gift or purchase for a team or group. Learn more

Buying and sending eBooks to others


Select quantity
Buy and send eBooks
Recipients can read on any device

Additional gift options are available when buying one eBook at a time. Learn more


These ebooks can only be redeemed by recipients in the US. Redemption links and eBooks cannot be resold.

Quantity:
This item has a maximum order quantity limit.

Deliver to your Kindle or other device

<Embed>
Kindle App Ad
Sapiens: A Brief History of Humankind by [Harari, Yuval Noah]
Audible Sample
Playing...
Loading...
Paused

Follow the Author

Something went wrong. Please try your request again later.


Sapiens: A Brief History of Humankind Kindle Edition

4.5 out of 5 stars 5,739 customer reviews
Customers reported quality issues in this eBook. This eBook has: Typos, Technical Issues, Poor Formatting.
The publisher has been notified to correct these issues.
Quality issues reported

See all 18 formats and editions Hide other formats and editions
Price
New from Used from
Kindle
$14.99

Length: 469 pages Word Wise: Enabled Enhanced Typesetting: Enabled
Page Flip: Enabled Audible book:
Audible book
Switch back and forth between reading the Kindle book and listening to the Audible book with Whispersync for Voice. Add the Audible book for a reduced price of $12.99 when you buy the Kindle book.
Available
  • Due to its large file size, this book may take longer to download

An Amazon Book with Buzz: "Maybe You Should Talk to Someone"
"This is a daring, delightful, and transformative book." ―Arianna Huffington, Founder, Huffington Post Learn more

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Editorial Reviews

Amazon.com Review

An Amazon Best Book of the Month for February 2015: Yuval Noah Harari has some questions. Among the biggest: How did Homo sapiens (or Homo sapiens sapiens , if you’re feeling especially wise today) evolve from an unexceptional savannah-dwelling primate to become the dominant force on the planet, emerging as the lone survivor out of six distinct, competing hominid species? He also has some answers, and they’re not what you’d expect. Tackling evolutionary concepts from a historian’s perspective, Sapiens: A Brief History of Humankind, describes human development through a framework of three not-necessarily-orthodox “Revolutions”: the Cognitive, the Agricultural, and the Scientific. His ideas are interesting and often amusing: Why have humans managed to build astonishingly large populations when other primate groups top out at 150 individuals? Because our talent for gossip allows us to build networks in societies too large for personal relationships between everyone, and our universally accepted “imagined realities”--such as money, religion, and Limited Liability Corporations—keep us in line. Who cultivated whom, humans or wheat?. Wheat. Though the concepts are unusual and sometimes heavy (as is the book, literally) Harari’s deft prose and wry, subversive humor make quick work of material prone to academic tedium. He’s written a book of popular nonfiction (it was a bestseller overseas, no doubt in part because his conclusions draw controversy) landing somewhere in the middle of a Venn diagram of genetics, sociology, and history. Throughout, Harari returns frequently to another question: Does all this progress make us happier, our lives easier? The answer might disappoint you. --Jon Foro

Review

"Harari is provocative and entertaining." ---Publishers Weekly

Product details

  • File Size: 33766 KB
  • Print Length: 469 pages
  • Publisher: Harper; Reprint edition (February 10, 2015)
  • Publication Date: February 10, 2015
  • Sold by: HarperCollins Publishers
  • Language: English
  • ASIN: B00ICN066A
  • Text-to-Speech: Enabled
  • X-Ray:
  • Word Wise: Enabled
  • Lending: Not Enabled
  • Enhanced Typesetting: Enabled
  • Amazon Best Sellers Rank: #685 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  • Would you like to tell us about a lower price?


5,739 customer reviews

4.5 out of 5 stars

By customer groups & interests
History Books
4.4
Anthropology
4.0
Non-Fiction Books
4.4
See more

Review this product

Share your thoughts with other customers

Read reviews that mention

February 10, 2018
Format: Kindle EditionVerified Purchase
928 people found this helpful
Comment Report abuse
August 25, 2018
Format: Kindle EditionVerified Purchase
173 people found this helpful
Comment Report abuse
September 28, 2018
Format: Kindle EditionVerified Purchase
75 people found this helpful
Comment Report abuse
March 12, 2017
Format: PaperbackVerified Purchase
1,989 people found this helpful
Comment Report abuse
September 1, 2018
Format: Kindle EditionVerified Purchase
80 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

Sapiens: A Brief History of Humankind
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Sapiens: A Brief History of Humankind
#####EOF##### AWS | Cloud Computing - Servicios de informática en la nube

Conozca nuestros productos

Respaldamos la innovación de los clientes

  • Transformación empresarial
  • Análisis predictivos
  • Aprendizaje automático
  • SIN SERVIDOR
  • Juegos
  • APLICACIONES EMPRESARIALES
  • Transformación empresarial
  • PI-C1_Logo

    Capital One volvió a concibir la banca con AWS

    Conozca cómo Capital One implementó su estrategia de prioridad de la nube a través de la educación, la planificación a largo plazo y el enfoque constante en las necesidades de los clientes.
    Más información 
    PI-C1_Mobile_Step-1

    Enfoque en los clientes

    En 2014, Capital One tenía una incipiente capacidad de nube privada y también estaba experimentando con AWS. En un esfuerzo por desarrollar las características que sus clientes querían lo más rápido posible, la empresa optó por buscar la solución en AWS.

    PI-C1_Mobile_Step-2

    La parte difícil primero

    La seguridad y la conformidad con críticos para Capital One como institución financiera. Para abordar estas necesidades, Capital One creó un marco de riesgo de la nube y estableció una función de control en esta tecnología antes de trasladar una carga de trabajo única a AWS.

    PI-C1_Mobile_Step-3

    Educación: la clave para trasladarse a la nube

    Capital One ofrece un programa de formación en la nube para los ingenieros que trabajan directamente en AWS, así como para las partes interesadas sin conocimientos técnicos que necesitan poder defender el potencial de la informática en la nube. La compañía ahora se ubica entre las tres principales empresas de todo el mundo en cuanto a las certificaciones de AWS que tienen los empleados.

    PI-C1_Mobile_Step-4

    Materializar los beneficios de la nube

    Al utilizar AWS, Capital One lleva al mercado nuevos productos en semanas en lugar de meses o años, utiliza el aprendizaje automático para mejorar la experiencia del cliente y atrae a los mejores desarrolladores e ingenieros, todo lo cual ayuda a la compañía a lograr su objetivo más importante: crear experiencias experiencias para su clientes.

  • Análisis predictivos
  • F1-Insights-logo-power-by-AWS

    Formula One Group usa Amazon SageMaker para optimizar las carreras

    Conozca de qué manera la Fórmula 1 usa Amazon SageMaker y otros servicios de AWS para optimizar las decisiones relacionadas con las carreras y mejorar la experiencia de los seguidores.
    Más información 
    PI-F1-1-mobile-beginning-a-transformation-ending

    El comienzo de una transformación

    El Grupo Fórmula Uno está migrando la mayor parte de su infraestructura de centros de datos locales a AWS y estandarizando en servicios de aprendizaje automático de AWS, incluido Amazon SageMaker.

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    Optimización de carreras con el aprendizaje automático

    Mediante datos de carreras históricos recopilados a partir de automóviles durante los últimos 65 años, los científicos de datos de la Fórmula 1 están entrenando modelos de aprendizaje profundo para que realicen predicciones de carreras y ayuden a los equipos a optimizar decisiones durante una carrera. Los modelos pueden predecir cuándo los equipos deberían realizar paradas técnicas para los automóviles, determinar el mejor momento para cambiar los neumáticos y evaluar el desempeño de los conductores.

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    Incorporación de los seguidores a la pista

    A continuación, la Fórmula 1 utiliza streaming de datos, análisis y servicios multimedia de AWS para distribuir información sobre las decisiones de los conductores y el rendimiento de los automóviles a sus más de 500 millones de seguidores.

    PI-F1-4-mobile-building-for-the-future-ending

    Formación del futuro

    Como la Fórmula 1 ejecuta sus cargas de trabajo informáticas de alto rendimiento en un entorno escalable en AWS, la organización puede realizar innovaciones en el diseño de automóviles, la experiencia de las carreras de la Fórmula 1, entre otras cosas, sin preocuparse por la capacidad.

  • Aprendizaje automático
  • Logo_Statcast-AI

    La MLB selecciona a AWS como proveedor oficial del servicio de aprendizaje automático

    Descubra de qué manera la Liga de Béisbol Profesional de Estados Unidos le da sentido a las estadísticas a través de AWS Machine Learning
    Más información 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    Una base para el aprendizaje profundo

    La MLB ha recopilado datos estadísticos sobre sus jugadores y clubes durante décadas. En 2015, comenzó a usar servicios de AWS para recopilar y distribuir estadísticas de los partidos del día a fin de mejorar la experiencia de los seguidores.

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    Mayor capacidad de acción para los desarrolladores

    Gracias a Amazon Sagemaker, la MLB puede permitir a sus desarrolladores y científicos de datos crear, entrenar e implementar de manera rápida y fácil modelos de aprendizaje automático a escala.

    PI-MLB-3-Lightening the Load-ending stage

    Menor carga

    Estos modelos ayudan a la MLB a eliminar procesos manuales y que consumen mucho tiempo asociados con las estadísticas y la conservación de registros, como el almacenamiento de puntajes, el registro de las notas sobre los partidos y la clasificación de los lanzamientos.

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    Personalización de partidos

    El objetivo de la MLB es trabajar con Amazon ML Solutions Lab para continuar mejorando Statcast (su tecnología de seguimiento que analiza el rendimiento de los jugadores) incluida las pruebas de la precisión de las predicciones de los lanzamientos y la creación de experiencias personalizadas para los espectadores.

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    Un jonrón con inteligencia artificial

    La MLB continuará innovado mediante el uso de inteligencia artificial La organización planea utilizar Amazon Comprehend para crear un modelo de lenguaje que pueda crear secuencias de comandos para partidos en directo que simulen presentadores emblemáticos.

  • SIN SERVIDOR
  • Matson-logo

    Matson utiliza AWS para el funcionamiento de su negocio internacional de logística y envío

    Conozca de qué manera Matson usa AWS para promover la innovación y un servicio al cliente de nivel internacional, al mismo tiempo que logra fiabilidad operativa, seguridad y ahorro de costos en infraestructura.
    Más información 
    PI-Matson-Mobile_Step-1

    Seguimiento de contenedores en tiempo real

    Matson creó una aplicación móvil de referencia para el seguimiento internacional de contenedores que permite a los clientes realizar un seguimiento en tiempo real de sus envíos de carga. Otras características útiles de la aplicación incluyen la búsqueda interactiva de cronogramas de buques, las búsquedas de mapas de puertos basadas en ubicaciones y la actividad en directo de las cámaras de las puertas.

    PI-Matson-Mobile_Step-2

    Acceso desde dispositivos móviles

    Todos los dispositivos móviles obtienen acceso a AWS mediante Amazon API Gateway. Este método ofrece puntos de enlace con alta disponibilidad ubicados en bordes para el acceso a los recursos dentro de las nubes privadas virtuales existentes de Matson.

    PI-Matson-Mobile_Step-3

    Informática sin servidor

    Las funciones de AWS Lambda están diseñadas con un patrón de microservicios y adaptadas en función de contextos comerciales específicos basados en océanos, como el seguimiento de los envíos y los cronogramas de los buques.  

    PI-Matson-Mobile_Step-4

    Configuración y almacenamiento de bases de datos

    Amazon DynamoDB administra la configuración, además de la configuración de los comentarios de los usuarios y las notificaciones de comentarios de los usuarios que se envían desde dispositivos móviles. DynamoDB Streams suministra notificaciones en tiempo real al equipo de atención al cliente de Matson. 

    PI-Matson-Mobile_Step-5

    Alertas y monitoreo de datos

    Los clientes de Matson confían en la información de estado del buque y en el seguimiento de contenedores preciso y por minuto. El monitoreo y las alertas de eventos del sistema se logran mediante el uso de los servicios Amazon CloudWatch, Amazon SNS, Amazon SES, AWS Lambda y CloudWatch Logs.  

    PI-Matson-Mobile_Step-6

    Aplicación integral sin servidor

    Matson ahora puede ofrecer a sus clientes una aplicación integral sin servidor que los ayuda a realizar un seguimiento de sus envíos, sin infraestructura para mantener.

  • Juegos
  • PI-Epic_Logo_Final
    Epic Games utiliza AWS para potenciar el juego mundial Fortnite
    Conozca cómo Epic Games utiliza AWS para llevar a Fortnite a más de 200 millones de jugadores en todo el mundo.
    Más información 
    PI-Epic-Mobile_Step-1

    Crear las bases en la nube

    Epic Games ha estado utilizando AWS desde 2012 y ahora se encuentra en la nube de AWS, donde ejecuta su flota mundial de servidores de juegos, sistemas de plataforma backend, bases de datos, sitios web, canalización de análisis y sistemas de procesamiento en AWS.

    PI-Epic-Mobile_Step-2

    Un éxito de la noche a la mañana

    En 2017, Epic Games lanzó Fortnite, un juego multiplataforma y multijugador que se convirtió en un éxito de la noche a la mañana. En su primer año, la base de usuarios de Fortnite creció en más de 100 veces hasta llegar a 200 millones de jugadores en todo el mundo.

    PI-Epic-Mobile_Step-3

    Mover los límites de la escala

    AWS fue parte integral del éxito de Fortnite. Con AWS, Epic Games puede organizar eventos en el mismo juego con cientos de millones de usuarios invitados sin tener que preocuparse por la capacidad, incorpora 125 millones de eventos por minuto en su canalización de análisis y maneja un crecimiento de más de 5 PB por mes en el almacén de datos.

    PI-Epic-Mobile_Step-4

    Ofrecer la mejor experiencia de juego

    Con AWS, Epic Games siempre mejora la experiencia de sus jugadores y ofrece juegos y elementos nuevos y emocionantes. La compañía planea expandir su uso de los servicios de AWS en el futuro, incluyendo el aprendizaje automático y los servicios en contenedores.

  • APLICACIONES EMPRESARIALES
  • BPP_ylw_logo

    BP mejora el nivel de eficiencia y logra mayor velocidad y agilidad en costos para sus aplicaciones empresariales fundamentales

    Vea de qué manera BP simplificó y modernizó su conjunto de aplicaciones de SAP, lo que le permitió mejorar la experiencia del usuario y, al mismo tiempo, lograr agilidad en los costos y un rendimiento optimizado.
    Más información 
    PI-BP-Mobile_Step-1

    Administrar aplicaciones empresariales fundamentales

    La organización de TI de BP administra las aplicaciones de SAP que utilizan miles de empleados de todo el mundo para tareas de cadena de suministro, compras, finanzas, entre otras. 

    PI-BP-Mobile_Step-2

    Mejora de la velocidad y la agilidad en los costos

    Con el objetivo de mejorar la velocidad y lograr agilidad en los costos, BP usó Amazon EC2 para migrar estas aplicaciones empresariales fundamentales a la nube. Además, el equipo creó instancias X1 de EC2 para incrementar la escala y respaldar el análisis en tiempo real.

    PI-BP-Mobile_Step-3

    Incrementar el nivel de rendimiento

    Ahora el equipo puede poner sistemas en funcionamiento en horas en vez de semanas o meses. BP está observando incrementos en el nivel de rendimiento de manera general, incluida una mejora de velocidad del 40 por ciento en el sistema Lubricants ERP. 

    PI-BP-Mobile_Step-4

    Proteger datos

    Como parte de la migración a la nube, BP reajustó estándares de seguridad mediante el uso de los servicios AWS Config, AWS Identity and Access Management (IAM), Amazon CloudWatch y AWS Trusted Advisor. Estos nuevos estándares ayudaron a BP a desarrollar un marco seguro para el funcionamiento de su organización de TI.

AWSMP_logo_new-RGB

Buscar. Comprar. Implementar.

AWS Marketplace es un catálogo digital con miles de productos de software de proveedores de software independientes que facilitan la búsqueda, la aplicación de pruebas, la compra y la implementación de software que se ejecuta en AWS.
Más información 

Analice nuestras soluciones

60-machine-learning
Cree soluciones con plataformas y servicios eficientes, y con la compatibilidad con marcos de aprendizaje automático más amplia disponible.
60-analytics
Almacene, categorice y analice de manera segura todos sus datos en un único repositorio centralizado.
60-IoT
Un sistema de dispositivos amplios que conectan el mundo físico con la nube.
60-serverless
Cree y ejecute aplicaciones y servicios sin preocuparse por los servidores.
60-containers
Empaquete e implemente aplicaciones ligeras y proporcione un entorno de software estable y portátil para poder ejecutar de forma sencilla las aplicaciones y escalarlas en cualquier ubicación.
60-enterprise
Cree con un conjunto sólido de servicios específicamente diseñados para cumplir los requisitos únicos de seguridad, conformidad, privacidad y gestión de las grandes organizaciones.
60-storage
Opciones duraderas y rentables para copias de seguridad, recuperación de desastres y archivo de datos a escala de petabytes.
60-windows-workloads
Capacidad de cómputo flexible y escalable para aplicaciones de Microsoft. Administre y proteja cargas de trabajo de Windows de forma segura.

Diseñado para satisfacer los requisitos más exigentes

icon-security

Seguridad

Funciones de seguridad integrales para cumplir los requisitos más exigentes.
icon-compliant

Conformidad

Controles mejorados, auditoría y acreditaciones para una seguridad completa.
icon-hybrid

Solución híbrida

Cree arquitecturas híbridas para ampliar la infraestructura local en la nube.
icon-scalable

Escalabilidad

Obtenga acceso a los recursos que necesite y aumente o reduzca la escala con unos pocos minutos de anticipación.

Conozca de qué manera nuestros clientes crean soluciones en AWS

Red global de regiones de AWS

La nube de AWS incluye 61 zonas de disponibilidad en 20 regiones geográficas de todo el mundo. Además, se anunciaron planes para incorporar 12 zonas de disponibilidad y 4 regiones adicionales en Baréin, Ciudad del Cabo, Hong Kong y Milán.
2019 Infra Map - PDX
Key_AZ

Regiones y número de zonas de disponibilidad

EE.UU. Este
Norte de Virginia (6), Ohio (3)

EE. UU. Oeste
Norte de California (3), Oregón (4)

Asia Pacífico
Mumbai (2), Seúl (2), Singapur (3), Sídney (3), Tokio (4), Osaka-Local (1)

Canadá
Central (2)

China
Pekín (2), Ningxia (3)

Europa
Fráncfort (3), Irlanda (3), Londres (3), París (3), Estocolmo (3)

América del Sur
São Paulo (3)

GovCloud (EE.UU.)
EE.UU.-Este (3), EE.UU.-Oeste (3)

Key_Coming-Soon

Nueva región (próximamente)

Baréin

Ciudad del Cabo

Hong Kong

Milán

Más información 
#####EOF##### Legal

› AWS Customer Agreement - this agreement governs your use of our services

› AWS Service Terms - these additional terms apply to your use of specific services

› AWS Service Level Agreements - these service level agreements apply to your use of specific services

› AWS Acceptable Use Policy - this policy describes prohibited uses of our services

› AWS Trademark Guidelines - this page describes the guidelines for using certain of our trademarks and other designations

› AWS Site Terms - these terms govern your use of the AWS website

› Privacy Policy - this policy describes how information about you is used and shared

› AWS Tax Help - this page provides information about taxes applicable to our services

› AWS Europe - this page provides information about AWS Europe

#####EOF##### Java | Tutorials, APIs, SDKs, Docs | AWS Developer Center

Find all the tools, documentation, and sample code you need to develop secure, reliable, and scalable Java applications on the AWS cloud.

java programming language

Learn

Dive deep and discover. Expand and explore.

Read and watch guidance from experts on AWS. See how to get the most from AWS. Find solutions to common challenges. Gain the knowledge to get the most from the AWS cloud.

Develop

Design and code. Build and test. Run and debug.

Get started building software with the AWS SDK for Java library, code samples, and documentation. Eclipse Java IDE users can get started with the SDK easily using the AWS Toolkit for Eclipse. The AWS Toolkit for Eclipse is a plug-in for the Eclipse Java IDE that makes it easier for developers to develop, deploy, and debug Java applications using Amazon Web Services.

Connect

Raise questions. Get answers. Connect with AWS.

Join the community of developers developing secure, reliable, and scalable applications on the AWS cloud. Make the connections that will shift your development into the fast lane.

#####EOF##### Reach Your Goal: Richard Bejtlich, Anna Wonsley: 9780368016516: Amazon.com: Books

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton
Buy New
$14.95

FREE Shipping
Get free shipping
Free 5-8 business-day shipping within the U.S. when you order $25 of eligible items sold or fulfilled by Amazon.
Or get 4-5 business-day shipping on this item for $5.99. (Prices may vary for AK and HI.)
Learn more about free shipping
on orders over $25—or get FREE Two-Day Shipping with Amazon Prime
Only 10 left in stock (more on the way).
Ships from and sold by Amazon.com. Gift-wrap available.
Reach Your Goal has been added to your Cart
Other Sellers on Amazon
Add to Cart
$14.94
+ Free Shipping
Sold by: PBShop US
Add to Cart
$15.72
+ Free Shipping
Sold by: bargainbookstores-
Add to Cart
$17.28
+ Free Shipping
Sold by: Firehouse Liquidation
Have one to sell? Sell on Amazon
Flip to back Flip to front
Listen Playing... Paused   You're listening to a sample of the Audible audio edition.
Learn more
See all 2 images

Follow the Author

Something went wrong. Please try your request again later.


Reach Your Goal Paperback – January 9, 2019


See all formats and editions Hide other formats and editions
Price
New from Used from
Paperback
$14.95
$11.72 $12.42

Note: Available at a lower price from other sellers that may not offer free Prime shipping.

Discover Prime Book Box for Kids
Story time just got better with Prime Book Box, a subscription that delivers editorially hand-picked children’s books every 1, 2, or 3 months — at 40% off List Price. Learn more

Editorial Reviews

From the Author

From the Inside Flap

See all Editorial Reviews

Product details

  • Paperback: 176 pages
  • Publisher: Blurb (January 9, 2019)
  • Language: English
  • ISBN-10: 036801651X
  • ISBN-13: 978-0368016516
  • Product Dimensions: 6 x 0.4 x 9 inches
  • Shipping Weight: 8.8 ounces (View shipping rates and policies)
  • Average Customer Review: Be the first to review this item
  • Amazon Best Sellers Rank: #1,672,056 in Books (See Top 100 in Books)
  • Would you like to tell us about a lower price?
    If you are a seller for this product, would you like to suggest updates through seller support?

NO_CONTENT_IN_FEATURE

No customer reviews


Review this product

Share your thoughts with other customers

Set up an Amazon Giveaway

Reach Your Goal
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Reach Your Goal
#####EOF##### Cloud Products

Cloud Products

Amazon Web Services offers a broad set of global cloud-based products including compute, storage, databases, analytics, networking, mobile, developer tools, management tools, IoT, security and enterprise applications. These services help organizations move faster, lower IT costs, and scale. AWS is trusted by the largest enterprises and the hottest start-ups to power a wide variety of workloads including: web and mobile applications, game development, data processing and warehousing, storage, archive, and many others.

What is AWS? (2:56)

Explore Our Products

AWS Regions and Availability Zones

#####EOF##### Amazon.com: EarthWise Palo Santo - 20 Sticks - Organic: Home & Kitchen

Loading recommendations for this item...

Added to Cart

Not Added

Item is in your Cart

View Cart

Not Added

There was a problem adding this item to Cart. Please try again later.
Sorry, we're having trouble showing recommendations right now. Please try again later.
Continue shopping
$9.99
& FREE Shipping
In Stock.

Have one to sell? Sell on Amazon

EarthWise Palo Santo - 20 Sticks - Organic

3.3 out of 5 stars 622 customer reviews

Price: $9.99 & FREE Shipping
    This fits your .
  • Make sure this fits by entering your model number.
  • Palo Santo Sticks
  • 20 sticks / 4.5 ounces
  • Sustainably Harvested from Ecuador
  • Botanical Name: bursera graveolens
  • www.EarthWiseAromatics.com

Frequently bought together

  • EarthWise Palo Santo - 20 Sticks - Organic
  • +
  • Selenite Sticklets (Bulk Sale 10 Pieces)
Total price: $19.44
Buy the selected items together

Have a question?

Find answers in product info, Q&As, reviews

Please make sure that you are posting in the form of a question.

Don't see what you're looking for?
There was a problem completing your request. Please try your search again later.
All Product Information Customer Q&A's Customer Reviews

Product description

Palo Santo sticks sustainably harvested from Ecuador. 20 pieces.


Product information

Feedback

If you are a seller for this product, would you like to suggest updates through seller support?
Would you like to tell us about a lower price?

Compare with similar items


EarthWise Palo Santo - 20 Sticks - Organic
Luna Sundara Palo Santo Smudging Sticks High Resin Palo Santo from Ecuador - Wild Harvested Smudging Sticks
Premium Certified Authentic Ecuadorian Kiln-Dried Palo Santo (Holy Wood) Incense Sticks (10), Wild Harvested, 100% Natural for Purifying, Cleansing, Healing, Meditation and Stress Relief
New Age Smudges and Herbs MCWS3 California Mini Sage Wands, 4-Inch, Pack of 3, White
Luna Sundara Palo Santo Smudging Sticks from Peru Sustainably Harvested Quality Hand Picked - 100 Grams (Approximately 13-18 Sticks)
Alternative Imagination Premium Palo Santo Holy Wood Incense Sticks, for Purifying, Cleansing, Healing, Meditating, Stress Relief. 100% Natural and Sustainable, Wild Harvested. (6)
Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart
Customer Rating 3 out of 5 stars (622) 4 out of 5 stars (560) 4 out of 5 stars (144) 4 out of 5 stars (1860) 4 out of 5 stars (101) 4 out of 5 stars (904)
Price $9.99 $9.99 $8.99 $9.88 $12.99 $7.99
Shipping FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25
Sold By EarthWise Aromatics Luna Sundara, LLC Man in the Glass Moonlit Spirit Luna Sundara, LLC Alternative Sourcing
Color Wood Natural Light Beige White Natural Natural
Material Type Wood Wood Wood Sage Wood Wood

Customer Questions & Answers

622 customer reviews

3.3 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

April 6, 2017
Verified Purchase
review image
103 people found this helpful
Comment Report abuse
May 7, 2017
Verified Purchase
60 people found this helpful
Comment Report abuse
October 2, 2017
Verified Purchase
25 people found this helpful
Comment Report abuse
June 28, 2018
Verified Purchase
review image
12 people found this helpful
Comment Report abuse
March 24, 2018
Verified Purchase
14 people found this helpful
Comment Report abuse
September 3, 2017
Verified Purchase
7 people found this helpful
Comment Report abuse
December 18, 2017
Verified Purchase
3 people found this helpful
Comment Report abuse
November 2, 2017
Verified Purchase
3 people found this helpful
Comment Report abuse
Amazon FSA Store

Pages with related products. See and discover other items: decorative sticks, botanical decor, santa pillows, santa throw pillows, Best sage sticks for burning, resin santa
#####EOF##### Amazon.com: Homo Deus: A Brief History of Tomorrow eBook: Yuval Noah Harari: Kindle Store

Buying Options

Kindle Price: $14.99

Save $8.00 (35%)

These promotions will be applied to this item:

Some promotions may be combined; others are not eligible to be combined with other offers. For details, please see the Terms & Conditions associated with these promotions.

Deliver to your Kindle or other device

Buy for others

Give as a gift or purchase for a team or group. Learn more

Buying and sending eBooks to others


Select quantity
Buy and send eBooks
Recipients can read on any device

Additional gift options are available when buying one eBook at a time. Learn more


These ebooks can only be redeemed by recipients in the US. Redemption links and eBooks cannot be resold.

Quantity:
This item has a maximum order quantity limit.

Deliver to your Kindle or other device

<Embed>
Kindle App Ad
Homo Deus: A Brief History of Tomorrow by [Harari, Yuval Noah]
Audible Sample
Playing...
Loading...
Paused

Follow the Author

Something went wrong. Please try your request again later.


Homo Deus: A Brief History of Tomorrow Kindle Edition

4.4 out of 5 stars 1,391 customer reviews

See all 13 formats and editions Hide other formats and editions
Price
New from Used from
Kindle
$14.99

Length: 456 pages Word Wise: Enabled Enhanced Typesetting: Enabled
Page Flip: Enabled Audible book:
Audible book
Switch back and forth between reading the Kindle book and listening to the Audible book with Whispersync for Voice. Add the Audible book for a reduced price of $12.99 when you buy the Kindle book.
Available
  • Due to its large file size, this book may take longer to download

An Amazon Book with Buzz: "Maybe You Should Talk to Someone"
"This is a daring, delightful, and transformative book." ―Arianna Huffington, Founder, Huffington Post Learn more

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Editorial Reviews

Amazon.com Review

An Amazon Best Book of February 2017: Those who read and loved Yuval Noah Harari’s Sapiens have been eagerly anticipating his new book Homo Deus. While Sapiens looked back at our evolutionary development, this new book examines where we might be headed (Homo Deus is subtitled “A Brief History of Tomorrow”). Predicting the future isn’t as easy as deconstructing the past, and Harari openly admits the challenge—but even if he’s completely wrong in his predictions, and most of us doubt he is, Homo Deus is the kind of provocative, food-for-thought read that drew so many of us to his work in the first place. According to Harari, our future could be very different from our present—dark, technocratic, and automated—but reading about our possible fates, presented in Harari’s clear-eyed and illuminating style, sure is fascinating. --Chris Schluep, The Amazon Book Review

Review

Praise for Sapiens: A Brief History of Humankind:
"Here is a simple reason why Sapiens has risen explosively to the ranks of an international bestseller. It tackles the biggest questions of history and of the modern world, and it is written in unforgettably vivid language." -- Jared Diamond, Pulitzer Prize-winning author of Guns, Germs, and Steel

 Praise for Homo Deus:
Homo Deus will shock you. It will entertain you. Above all, it will make you think in ways you had not thought before.” –Daniel Kahneman, author of Thinking, Fast and Slow

“Israeli Professor Harari is one of today’s most exciting and provocative thinkers. His innovative new book blends science, history and philosophy to explore the future of humanity in the face of artificial intelligence and examine whether our species will be rendered completely redundant.” –Cambridge Network

“Spellbinding. . . . This is a very intelligent book, full of sharp insights and mordant wit. . . . Its real power comes from the sense of a distinctive consciousness behind it. It is a quirky and cool book, with a sliver of ice at its heart. . .  It is hard to imagine anyone could read this book without getting an occasional, vertiginous thrill. –The Guardian


It’s a chilling prospect, but the AI we’ve created could transform human nature, argues this spellbinding new book by the author of Sapiens.” –The Guardian

“Nominally a historian, Harari is in fact an intellectual magpie who has plucked theories and data from many disciplines — including philosophy, theology, computer science and biology — to produce a brilliantly original, thought-provoking and important study of where mankind is heading.” –Evening Standard

“Harari’s work is . . . an unsettling meditation on the future. He’s opened a portal for us to contemplate on what kind of relationships we are forming with our data-crunching machines and whether ‘right’ must be determined by empirical evidence or good old ‘gut instinct.’” –The Hindu

“[Harari’s] propositions are well-developed, drawing upon a combination of science, philosophy and history. While the book offers a rather pessimistic and even nihilistic view of man’s future, it is written with wit and style and makes compelling reading.” –iNews


Product details

  • File Size: 12846 KB
  • Print Length: 456 pages
  • Publisher: Harper; Reprint edition (February 21, 2017)
  • Publication Date: February 21, 2017
  • Sold by: HarperCollins Publishers
  • Language: English
  • ASIN: B01BBQ33VE
  • Text-to-Speech: Enabled
  • X-Ray:
  • Word Wise: Enabled
  • Lending: Not Enabled
  • Screen Reader: Supported
  • Enhanced Typesetting: Enabled
  • Amazon Best Sellers Rank: #3,556 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  • Would you like to tell us about a lower price?


1,391 customer reviews

4.4 out of 5 stars

By customer groups & interests
Artificial Intelligence
4.0
Anthropology
3.8
Book Series
4.2

Review this product

Share your thoughts with other customers

Read reviews that mention

January 5, 2017
Verified Purchase
1,149 people found this helpful
Comment Report abuse
February 17, 2017
Format: HardcoverVerified Purchase
888 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

Homo Deus: A Brief History of Tomorrow
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Homo Deus: A Brief History of Tomorrow
#####EOF##### Practical Packet Analysis, 3E: Using Wireshark to Solve Real-World Network Problems: Chris Sanders: 9781593278021: Amazon.com: Books
Practical Packet Analysis, 3E and millions of other books are available for Amazon Kindle. Learn more

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Practical Packet Analysis, 3E: Using Wireshark to Solve Real-World Network Problems 3rd Edition

4.5 out of 5 stars 101 customer reviews
ISBN-13: 978-1593278021
ISBN-10: 1593278020
Why is ISBN important?
ISBN
This bar-code number lets you verify that you're getting exactly the right version or edition of a book. The 13-digit and 10-digit formats both work.
Scan an ISBN with your phone
Use the Amazon App to scan ISBNs and compare prices.
Have one to sell? Sell on Amazon
Condition: Used - Like New
Used - Like New
Book Condition: LIKE NEW/UNREAD!!! Text is Clean and Unmarked! Has a small black line on the bottom/exterior edge of pages. Tracking is not available for orders shipped outside of the United States.
In Stock. Sold by bellwetherbooks
Condition: Used: Like New
Comment: LIKE NEW/UNREAD!!! Text is Clean and Unmarked! Has a small black line on the bottom/exterior edge of pages. Tracking is not available for orders shipped outside of the United States.
Access codes and supplements are not guaranteed with used items.
+ $3.98 shipping
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
List Price: $49.95
Save: $15.99 (32%)
Practical Packet Analysis... has been added to your Cart
Price
New from Used from
eTextbook
Paperback
$33.96
$33.02 $21.17
Free Two-Day Shipping for College Students with Prime Student Free Two-Day Shipping for College Students with Amazon Student


Amazon First Reads | Editors' picks at exclusive prices

Frequently bought together

  • Practical Packet Analysis, 3E: Using Wireshark to Solve Real-World Network Problems
  • +
  • The Practice of Network Security Monitoring: Understanding Incident Detection and Response
  • +
  • Blue Team Field Manual (BTFM) (RTFM)
Total price: $87.41
Buy the selected items together

Editorial Reviews

Review

About the Author


Product details

  • Paperback: 368 pages
  • Publisher: No Starch Press; 3 edition (March 30, 2017)
  • Language: English
  • ISBN-10: 1593278020
  • ISBN-13: 978-1593278021
  • Product Dimensions: 7 x 0.8 x 9.2 inches
  • Shipping Weight: 1.4 pounds (View shipping rates and policies)
  • Average Customer Review: 4.5 out of 5 stars 101 customer reviews
  • Amazon Best Sellers Rank: #34,887 in Books (See Top 100 in Books)
  • Would you like to tell us about a lower price?
    If you are a seller for this product, would you like to suggest updates through seller support?

NO_CONTENT_IN_FEATURE

Try the Kindle edition and experience these great reading features:

CLOSE
See Kindle Edition

101 customer reviews

4.5 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

September 5, 2017
Format: PaperbackVerified Purchase
3 people found this helpful
Comment Report abuse
February 11, 2012
Format: PaperbackVerified Purchase
28 people found this helpful
Comment Report abuse
May 18, 2016
Format: PaperbackVerified Purchase
5 people found this helpful
Comment Report abuse
December 22, 2018
Format: PaperbackVerified Purchase
June 28, 2017
Format: PaperbackVerified Purchase
6 people found this helpful
Comment Report abuse
June 19, 2018
Format: PaperbackVerified Purchase
One person found this helpful
Comment Report abuse
January 13, 2019
Format: Kindle EditionVerified Purchase
May 8, 2012
Format: PaperbackVerified Purchase
9 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

Practical Packet Analysis, 3E: Using Wireshark to Solve Real-World Network Problems
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Practical Packet Analysis, 3E: Using Wireshark to Solve Real-World Network Problems
Pages with related products. See and discover other items: network administration, network analysis, security analyst, malware analysis
#####EOF##### Sam the Cat: and Other Stories (Vintage Contemporaries) - Kindle edition by Matthew Klam. Literature & Fiction Kindle eBooks @ Amazon.com.

Buying Options

Kindle Price: $11.99

Save $4.01 (25%)

These promotions will be applied to this item:

Some promotions may be combined; others are not eligible to be combined with other offers. For details, please see the Terms & Conditions associated with these promotions.

Deliver to your Kindle or other device

Buy for others

Give as a gift or purchase for a team or group. Learn more

Buying and sending eBooks to others


Select quantity
Buy and send eBooks
Recipients can read on any device

Additional gift options are available when buying one eBook at a time. Learn more


These ebooks can only be redeemed by recipients in the US. Redemption links and eBooks cannot be resold.

Quantity:
This item has a maximum order quantity limit.

Deliver to your Kindle or other device

<Embed>
Kindle App Ad
Sam the Cat: and Other Stories (Vintage Contemporaries) by [Klam, Matthew]
Audible Sample
Playing...
Loading...
Paused

Follow the Authors

Something went wrong. Please try your request again later.


Sam the Cat: and Other Stories (Vintage Contemporaries) Kindle Edition

3.4 out of 5 stars 33 customer reviews

See all 4 formats and editions Hide other formats and editions
Price
New from Used from
Kindle
$11.99

Length: 260 pages Word Wise: Enabled Enhanced Typesetting: Enabled
Page Flip: Enabled Audible book:
Audible book
Switch back and forth between reading the Kindle book and listening to the Audible book with Whispersync for Voice. Add the Audible book for a reduced price of $7.49 when you buy the Kindle book.
Available
  • Similar books to Sam the Cat: and Other Stories (Vintage Contemporaries)

An Amazon Book with Buzz: "Maybe You Should Talk to Someone"
"This is a daring, delightful, and transformative book." ―Arianna Huffington, Founder, Huffington Post Learn more

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Editorial Reviews

Amazon.com Review

Matthew Klam's male narrators in Sam the Cat hate and need women in equal measure. By and large they're not physically violent men, but they do possess a certain free-floating aggression--the byproduct of sad childhoods, dads who treated them like losers, and moms who weren't quite all there. Indeed, throughout this troubling, masterfully written collection of stories, women never seem truly present, however central they may be. As the typically indiscriminate narrator of "Not This" explains, his girlfriend "fit my idea of the supreme woman. Why? Who gives a shit. We fell in love."

In the title story, which catapulted the author into the spotlight when it ran in The New Yorker, a guy goes out looking to get laid, then finds himself hitting on a man in drag. Other potential mates turn out to be only nominally less ersatz, with eyes "like a plastic doll's." Klam's men know that they're supposed to locate love somewhere among these zombies, but they can't find it, and this fills them with irritation and angry longing. Cumulatively, his stories paint a grim picture indeed: one of a bitter, stifled heterosexuality, leading straight to violence or to varying degrees of lifelessness. His taut, spooky prose recalls another connoisseur of erotic disappointment, Lorrie Moore. But where Moore is partial to neurotic women, Klam's subject is the guy who wishes he could transcend himself and be redeemed from the small and angry America in which he's stuck. --Emily White

From Publishers Weekly

Prosperous, morally addled young Americans wallow and flail in a glossy, unsettling consumer wonderland in Klam's unnervingly dead-on debut collection of seven long stories. Capturing contemporary speech and thought patterns as few writers can, Klam practically channels his protagonists, allowing them to inhabit him rather than the other way around. In the hilarious title story, a testosterone-crazed advertising executive is forced to reconsider his sexuality when he is unexpectedly attracted to another man. Klam's choppy, declarative sentences perfectly capture the comedy of a dissolute serial monogamist raging against self-discovery and the poignant confusion that such discovery brings. In "Linda's Daddy's Loaded," a wealthy father spoils his daughter and her husband so much that the couple is nearly driven apart, longing for the days when they struggled together in relative poverty. Deftly manipulating symbols and disjunctive prose, Klam explores the existential vacuum that threatens when the American Dream is obediently followed. "The Royal Palms," an O. Henry Award-winning story, is an elegantly composed tale in which the mutely explosive disappointments of a failed marriage are silhouetted against the backdrop of a Caribbean paradise. Other psychologically penetrating entries include "Not This," about a man who relishes the possibility of donating sperm to his pompous older brother's wife, and "Issues I Dealt With in Therapy," about the reunion of two college friends at a wedding and the collision of past idealism with recent imperatives of success. Throughout the collection, Klam demonstrates his mastery of the fine art of irony, exposing the nerve endings of his complex, often tormented, sometimes funny, characters, while allowing the reader to make his or her own judgments. (May) FYI: In 1999, Klam was named one of the 20 best young fiction writers in America by the New Yorker.
Copyright 2000 Reed Business Information, Inc.

Product details

  • File Size: 1670 KB
  • Print Length: 260 pages
  • Publisher: Vintage (December 15, 2010)
  • Publication Date: December 15, 2010
  • Sold by: Random House LLC
  • Language: English
  • ASIN: B004EPYWII
  • Text-to-Speech: Enabled
  • X-Ray:
  • Word Wise: Enabled
  • Lending: Not Enabled
  • Screen Reader: Supported
  • Enhanced Typesetting: Enabled
  • Amazon Best Sellers Rank: #557,357 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  • Would you like to tell us about a lower price?


33 customer reviews

3.4 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

January 14, 2018
Format: Kindle EditionVerified Purchase
One person found this helpful
Comment Report abuse
April 10, 2011
Format: PaperbackVerified Purchase
9 people found this helpful
Comment Report abuse
July 17, 2017
Format: Kindle EditionVerified Purchase
3 people found this helpful
Comment Report abuse
October 31, 2017
Format: Kindle EditionVerified Purchase
June 20, 2000
Format: HardcoverVerified Purchase
5 people found this helpful
Comment Report abuse
October 23, 2015
Format: Kindle EditionVerified Purchase
4 people found this helpful
Comment Report abuse
September 11, 2017
Format: Kindle EditionVerified Purchase
July 18, 2017
Format: PaperbackVerified Purchase

Set up an Amazon Giveaway

Sam the Cat: and Other Stories (Vintage Contemporaries)
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: Sam the Cat: and Other Stories (Vintage Contemporaries)
#####EOF##### AWS Architecture Center

AWS Architecture Center

Latest reference architectures

Image moderation chatbot

aws-reference-architecture-chatbot

Shows you how to build a serverless chatbot on AWS that monitors your chat channels and removes images containing suggestive or explicit content. (GitHub)

Magento CE hosting

aws-reference-architecture-magento

Simplifies the complexity of deploying a scalable and highly available Magento CE commerce platform on AWS. (GitHub)

Drupal hosting

aws-reference-architecture-drupal

Enables you to deploy a scalable and highly available Drupal site on AWS. (GitHub)

WordPress hosting

aws-reference-architecture-wordpress

Simplifies the complexity of deploying a scalable and highly available WordPress site on AWS. (GitHub)

 back to top

Latest AWS Quick Starts

AWS Quick Starts are automated reference deployments. They help you rapidly deploy fully functional software on the AWS Cloud, reduce hundreds of manual procedures into just a few steps, and follow AWS best practices for security and availability. An AWS CloudFormation template automates the deployment, and a deployment guide describes the architecture and implementation in detail. Quick Starts are modular and customizable; you can layer additional functionality on top or modify them for your own implementations.

The following Quick Starts are recent additions and updates. See the Quick Start catalog for a complete list. 

1 …
…
 back to top

AWS reference architectures

The flexibility of AWS enables you to design your application architectures the way you like. AWS reference architecture datasheets provide you with the architectural guidance you need to build an application that takes full advantage of the AWS Cloud. Each datasheet includes a visual representation of the application architecture and a basic description of how each service is used.

Web application hosting

AWS-web-application-hosting-thumb

Build highly-scalable and reliable web or mobile-web applications. (PDF)

Content and media serving

AWS-content-media-serving-thumb

Build highly reliable systems that serve massive amounts of content and media. (PDF)

Batch processing

AWS-batch-processing-thumb

Build auto-scalable batch processing systems, such as video processing pipelines. (PDF)

Fault tolerance and HA

AWS-fault-tolerance-thumb

Build systems that are highly available and quickly fail over to new instances in an event of failure. (PDF)

Large-scale computing

AWS-large-scale-processing-huge-data-thumb

Build high-performance computing systems that involve big data. (PDF)

Ad serving

AWS-ad-serving-thumb

Build highly scalable online ad serving solutions. (PDF)

DR for local applications

AWS-disaster-recovery-local-applications-thumb

Build cost-effective disaster recovery (DR) solutions for on-premises applications. (PDF)

File synchronization

AWS-file-synchronization-thumb

Build a simple file synchronization service. (PDF)

Media sharing

AWS-media-sharing-thumb

Build a cloud-powered media sharing framework. (PDF)

Online games

AWS-online-games-thumb

Build powerful online games. (PDF)

Web log analysis

AWS-web-log-thumb

Analyze massive volumes of log data in the cloud. (PDF)

Financial services grids

AWS-financial-grid-computing-thumb

Build highly scalable and elastic grids for the financial services sector. (PDF)

Ecommerce website: web front end

AWS-ecommerce01-thumb

Build an ecommerce website with a flexible product catalog. (PDF)

Ecommerce website: checkout service

AWS-ecommerce02-thumb

Build a secure, highly scalable checkout pipeline for an ecommerce website. (PDF)

Ecommerce website: marketing and recommendations

AWS-ecommerce03-thumb

Build a highly scalable recommendation engine for an ecommerce website. (PDF)

Time series processing

AWS-Time-Series

Build elastic systems that process time series data. (PDF)


Reference architecture spotlight

VMware Cloud on AWS

Microsoft SQL Server in hybrid environment

aws-reference-architecture_VMwareCloudonAWS_SQL_Server

Provides information about how to achieve high performance and availability in a hybrid AWS and VMware Cloud environment with the SQL Server Always On Availability Group feature. (PDF)

Backup and restore to VMware Cloud on AWS

aws-reference-architecture_VMwareCloudonAWS_DR_1

Includes native services integration for AWS Storage Gateway, Amazon S3, AWS Direct Connect, and Amazon Route 53. (PDF)

Microsoft SharePoint on VMware Cloud on AWS

aws-reference-architecture_SharePoint-Hybrid

Provides information about how to deploy SharePoint on VMware Cloud in a Multi-AZ environment on AWS. (PDF)

Oracle RAC on VMware Cloud on AWS

aws_reference_architecture_oracle_rac_on_vmware_cloud

Provides information about live-migrating vMotion vSphere workloads to the cloud without downtime and integrating them with cloud-native services. (PDF)

Hybrid Active Directory trusted domains

aws_reference_architecture_hybrid_active_directory_trusted_domains

Demonstrates Active Directory trusted domains in which a customer domain is configured in a one-way or two-way trust relationship with the cloud domain. (PDF)

Hybrid Active Directory stretched domain

aws_reference_architecture_hybrid_active_directory_stretched_domain

Demonstrates a single customer domain stretched to the AWS and VMware Cloud on AWS. (PDF)

 back to top

Architecture whitepapers from AWS

AWS Well-Architected Framework

This paper describes the AWS Well-Architected Framework, which enables customers to assess and improve their cloud-based architectures and better understand the business impact of their design decisions. The paper addresses general design principles as well as specific best practices and guidance in four conceptual areas that are defined as the pillars of the Well-Architected Framework. (PDF)

Building Fault-Tolerant Applications on AWS

AWS provides you with the necessary tools, features, and geographic regions that enable you to build reliable, affordable fault-tolerant systems that operate with a minimal amount of human interaction. This whitepaper discusses the fault-tolerant features that you can use to build highly reliable and highly available applications in the AWS Cloud. (PDF)

Amazon SES: Email Sending Best Practices

To run a successful email program, you must be aware of a few topics that can affect your delivery and ultimately your impact on email recipients. This whitepaper discusses the value attributed to your email by your recipients and the Internet Service Providers (ISPs) responsible for protecting their inboxes. It explains the emailing process, who’s involved, what their roles are, and how to run a successful email program using Amazon Simple Email Service (Amazon SES). (PDF)

AWS Security Best Practices

Security should be implemented in every layer of your cloud application architecture. This whitepaper discusses specific tools, features, and guidelines for securing your cloud application in the AWS environment. It also includes strategies on how you can build security into your application from the ground up. (PDF)

Using AWS for Disaster Recovery

In the event of a disaster, you can quickly launch resources in AWS to ensure business continuity. The paper highlights relevant AWS features and services that you can use for your disaster recovery (DR ) processes, and shows example scenarios on how to recover from a disaster. It provides recommendations on how you can improve your DR plan and leverage the full potential of AWS for your DR processes. (PDF)

Web Application Hosting in the AWS Cloud

Hosting highly available and scalable web applications can be a complex and expensive proposition. AWS provides the reliable, scalable, secure, and highly performing infrastructure required for the most demanding web applications. It also enables an elastic scale-out and scale-down infrastructure model to match IT costs with real-time customer traffic patterns. This whitepaper reviews web application hosting in detail, including how AWS services can be used to create a highly available, scalable web application. (PDF)

 back to top

Recorded architecture webinars

View recorded webinars on a variety of topics, from architectural best practices to migrating applications.

 back to top
#####EOF##### Amazon.co.uk Help: Modern Day Slavery Statement Learn more Download now Shop now Shop now Shop now Learn more Shop now Ralph Breaks the Internet Ralph Breaks the Internet Ralph Breaks the Internet Learn more Shop Fire Shop Now Learn More Shop now

Modern Day Slavery Statement

Amazon continually works to prevent slavery and human trafficking from taking place in our manufacturing supply chains and operations, in line with the United Kingdom Modern Slavery Act.

Our Business

Amazon.com opened its virtual doors on the World Wide Web in July 1995. We seek to be Earth’s most customer-centric company. We are guided by four principles: customer obsession rather than competitor focus, passion for invention, commitment to operational excellence, and long-term thinking. In each of our segments, we serve our primary customer sets, consisting of consumers, sellers, developers, enterprises, and content creators. In addition, we provide services, such as advertising services and co-branded credit card agreements. We have organized our operations into three segments: North America, International, and Amazon Web Services (“AWS”). These segments reflect the way the company evaluates its business performance and manages its operations.

As of December 31, 2017, we employed approximately 566,000 full-time and part-time employees. However, employment levels fluctuate due to seasonal factors affecting our business. Additionally, we utilize independent contractors and temporary personnel to supplement our workforce. We have works councils, statutory employee representation obligations, and union agreements in certain countries outside the United States and at certain of our studio operations within the United States.

Amazon is committed to improving the working conditions of people around the world who are a part of our supply chain and business. Amazon sources products and services for many of its businesses around the world, including sourcing private label products in several industries (including electronics, fashion, consumables, and furniture). With manufacturers and service providers spanning the Americas, Asia, Australia, Europe, and Africa, we recognize the need to monitor for conditions that put workers at risk of forced labour.

Policies and Controls

Amazon’s internal Code of Business Conduct and Ethics sets out guiding principles and establishes that in performing job duties Amazon employees should always act lawfully, ethically, and in the best interests of Amazon.

Amazon commits publicly to addressing risk of slavery and human trafficking in its Supplier Code of Conduct (“Supplier Code”). Amazon’s purchase and service agreements require our manufacturing suppliers and service providers supporting Amazon’s internal operations (e.g. call centers, delivery and fulfillment providers) to comply with our Supplier Code of Conduct.

We evaluate and address risks of slavery and human trafficking in the Supplier Code which states, among other standards, that:

  • Our suppliers must not use forced labour - slave, prison, indentured, bonded, or otherwise.
  • Our suppliers must not traffic workers or in any other way exploit workers by means of threat, force, coercion, abduction, or fraud. Working must be voluntary, and workers must be free to leave work and terminate their employment or other work status with reasonable notice.
  • Workers shall not be required to pay recruitment, hiring, or other similar fees related to their employment; our suppliers must bear or reimburse to their workers the cost of any such fees. All fees and expenses charged to workers must be disclosed to Amazon and communicated to workers in their native language in advance of employment.
  • Our suppliers must not require workers to surrender government issued identification, passports, or work permits as a condition of working, and our suppliers may only temporarily hold onto such documents to the extent reasonably necessary to complete legitimate administrative and immigration processing.
  • Workers must be given clear, understandable contracts regarding the terms and conditions of their engagement in a language understood by the worker.
  • Suppliers must ensure that each of its staffing or recruiting agencies comply with this Supplier Code and with the more stringent of the applicable laws of the country where work is performed and the worker’s home country.

Due Diligence Processes

Amazon assesses manufacturing suppliers and service providers for continued compliance and improvement. Amazon uses a risk-based approach to determine the frequency of assessments and which manufacturing suppliers and service providers should be assessed. Many sites are assessed multiple times a year, including through follow-up assessments to address specific findings. Amazon may terminate its relationships with any supplier that violates our Supplier Code or does not cooperate during assessments. Assessments may include:

  • Site inspection of all areas of the site and any living quarters;
  • Confidential worker interviews or surveys conducted without site management present;
  • Review and analysis of site documents or licenses to assess workers' age, contracts, compensation, working hours, and workplace conditions;
  • Identification of past compliance issues, areas for improvement, and development of a remediation plan.

Audit reports and findings are reviewed regularly by senior leadership and corrective action plans are implemented as needed. Amazon tracks remediation closely and conducts follow-up audits for significant issues. Between audits, Amazon employees meet on-site with supplier managers to discuss open issues and remediation progress.

Suppliers are required to remediate violations of Amazon’s Supplier Code of Conduct. Suppliers must submit a Corrective Action Plan (CAP) providing both a root cause analysis and a description of remedy. Amazon evaluates CAPs in light of the severity level of the violation.

Risk Management

To ensure that our policies and programs incorporate internationally recognized human rights standards, we conduct formal benchmarking with industry and multilateral groups to design, operate, and continually improve our risk assessment and audit program.

Amazon aligns with industry associations to collaborate on key issues and leverages their standardized assessments. Amazon is member of the Responsible Business Alliance (RBA), has committed to implement the RBA Code of Conduct, leverages their standardized audits and participates in their working group on forced labour, the Responsible Labour Initiative. The Responsible Labour Initiative is a multi-stakeholder initiative, which develops resources, trainings, and strategies to address modern slavery. The Responsible Labour Initiative also works with labour agents and suppliers to understand the obstacles to remediation and identify potential solutions. In 2017, Amazon joined the Supplier Ethical Data Exchange (Sedex) and began leveraging their globally-recognized social assessments to reduce audit duplication in our supply chain.

Assessment of Effectiveness

Suppliers manufacturing Amazon private label products are assessed for compliance with Amazon's Supplier Code of Conduct before Amazon begins ordering products, and we expect all of our suppliers and service providers to meet the standards in our Supplier Code of Conduct as a condition of doing business with us. These facilities must demonstrate the absence of any issue that has caused or is likely to cause immediate harm to workers or communities, or demonstrates egregious unethical behavior, including the use of forced or indentured labour, or human trafficking. In the event an issue that has caused or is likely to cause severe harm to workers is identified prior to beginning a relationship with Amazon, the issue must be resolved before, and as a condition of, initial production and to qualify for continued production with Amazon. Amazon’s sourcing teams have each taken on Social Responsibility goals to monitor for these conditions at an executive leadership level; performance against these goals is regularly reported to leadership.

The Social Responsibility team consults with Amazon business teams on new sourcing geographies and sourcing teams are responsible for reviewing supplier performance before moving to production.

Support and Capacity Building

We offer suppliers training to help understand Amazon requirements before audits, effectively navigate the Corrective Action Plan (CAP) process, and design and implement sustainable management systems after an audit. We have dedicated teams that work directly with suppliers and service providers in major geographies. We offer on-site and remote training to support continuous improvement. Suppliers are also encouraged to participate in external training programs, such as industry association tutorials related to recognizing and preventing forced labour and implementing management systems. We are continuously exploring ways to use Amazon’s expertise to expand this support.

Employees of Amazon take mandatory compliance training courses on the Code of Business Conduct and Ethics, Anti-Bribery Compliance, and Workplace Harassment. Additionally, the Amazon.com Legal Department has developed and maintains reporting guidelines for employees who wish to report violations of the Business Code of Conduct and Ethics. These guidelines include information on making reports to the Legal Department and to an independent third party.

Approval for this statement

This statement was approved by the Amazon European Board of Directors and covers all activities undertaken by Amazon's UK entities.

Amazon EU SARL, UK Branch

Doug Gurr

ARCHIVE

Amazon’s Modern Day Slavery Statement (published 2017)

Was this information helpful?

Thank you for your feedback.

Please select what best describes the information:

Thanks! While we're unable to respond directly to your feedback, we'll use this information to improve our online Help.


#####EOF##### #####EOF##### AWS | AWS for Automotive - Amazon Web Services

Automotive

Deliver innovative customer experiences and accelerate your time to market across the automotive value chain with Amazon Web Services.

From global automakers and Tier I automotive suppliers to the latest mobility startup, Amazon Web Services (AWS) is helping automotive companies to build innovative connected products and services for every touchpoint of the customer journey. Our secure, agile and scalable platform can help accelerate your pace of innovation, improve your security posture and lower your IT cost structure.

With AWS you can focus your resources on building differentiated automotive brand experiences for your customers, rather than managing IT infrastructure.

Learn how AWS enables automotive companies to deliver innovative experiences at every touchpoint.

What's new

Avis Budget Group Connected Car Platform

Avis Budget Group (ABG) announced its plans to use the AWS Connected Vehicle Solution for it's global connected car platform. ABG will leverage AWS’s capabilities for Artificial Intelligence (AI), Machine Learning (ML), and Data Management to develop a wide variety of innovative connected vehicle applications and mobility services.

Learn More »

AWS Partners with Formula 1 to Optimize Racing

To accelerate its cloud transformation, the Formula One Group is moving the vast majority of its infrastructure from on-premises data centers to AWS and standardizing on AWS’s machine-learning and data-analytics services to optimize racing and improve the fan experience.

Learn more »

Explore Use Cases Across the Automotive Value Chain

AWS provides services for the Automotive industry to enable your digital transformation at every point of the value chain.

AWS-for-Automotive_Connected-Vehicles

Connected Vehicles and Mobility

AWS offers a comprehensive set of services to gather, process, analyze and act on vehicle data at global scale with local computing capabilities allowing you to execute functions and act on data within the vehicle, even when connectivity is interrupted.  Rapidly develop and deploy innovative connected vehicle applications to provide personalized, intuitive, intelligent and safe interactions for an advanced in-vehicle experience while reducing connectivity costs.

  • Over-the-Air (OTA) Vehicle Management
  • Vehicle Monitoring/Predictive Analytics
  • Location Based Services

Learn more »

AWS-for-Automotive_Digital-Customer-Engagement

Digital Customer Engagement

AWS' suite of cloud services provides advanced digital marketing tools and highly scalable infrastructure allowing you to modernize your marketing platforms and provide a personalized, engaging automotive experience at every touchpoint. Provide smart on-demand content, develop intelligent AI conversational agents, and use machine learning to predict customer behavior and provide insights that drive business results.  

  • Omnichannel Marketing
  • Smart Content Creation
  • Chatbots

Learn more »

AWS-for-Automotive_Autonomous-Driving

ADAS & Autonomous Vehicles

AWS provides a full suite of services to support Advanced Driver Assistance Systems  and Autonomous Vehicle development and deployment with nearly unlimited storage and compute capacity, support for popular deep learning frameworks to accelerate your algorithm training and testing and edge computing with machine learning inference capabilities for real-time processing of local rules and events in the vehicle.

  • Data Collection / Ingestion / Storage
  • Model Training and Simulation
  • In-vehicle Runtime Processing  

Learn more »

AWS-for-Automotive_Manufacturing-and-Supply-Chain

Manufacturing and Supply Chain

  • Smart Factory/Industrie 4.0
  • Supply Chain Management
  • Predictive Maintience

Learn more »

AWS-for-Automotive_Design-and-Engineering

Product Design and Engineering

  • Product Design
  • Simulation

Learn more »

AWS-for-Automotive_Retail

Automotive Retail and Services

Benefits

Technologies for Innovation

AWS' wide array of services for automotive applications, including IoT, AI and machine learning, allow you to develop advanced connected experiences and innovative ways to engage with your customers' digital lifestyle.

Agility & Scalability

With AWS' serverless, microservices-based architecture and edge computing capabilities you have a powerful, agile innovation platform to create, test and scale any automotive workload, while reducing costs.

On-Demand Capabilities

Accelerate your product development speed using AWS' highly scalable compute capacities to power through specialized simulations and analysis like Autonomous Vehicle development, crash simulations and CFD modeling.

Data Security

AWS' services have been designed to meet the requirements of the most security-sensitive organizations to ensure your data is protected, and fine-grained access controls provide you with full management of data visibility.  

Hot Topic

Using AI to Personalize Your Brand Experience

AWS Machine Learning products like Amazon Rekognition and voice services including Amazon Alexa allow automotive brands to create a tailored brand experience for their customers. AWS Greengrass provides edge computing capabilities to ensure a consistent experience, even when there is a loss of connectivity.

Customer Stories

Leading automotive companies use AWS to empower their digital transformationthrought the value chain.  Click on the logos to learn more.

 

BMW
Uber
HERE
Audi
Lyft
Toyota Research Institute
Edmunds
TrueCar

Get started

Automotive companies of all types and sizes, from global automakers to startups rely on AWS. Contact our experts and start your own AWS Cloud journey today.

#####EOF##### AWS Marketplace: Homepage
Sign in
Categories
Migration Mapping Assistant Your Saved List Partners Sell in AWS Marketplace Amazon Web Services Home Help

Featured Products

Featured Container Products

Popular Products

New Product Spotlight

#####EOF##### Web Hosting - Amazon Web Services (AWS)

Amazon Web Services offers cloud web hosting solutions that provide businesses, non-profits, and governmental organizations with low-cost ways to deliver their websites and web applications. Whether you’re looking for a marketing, rich-media, or ecommerce website, AWS offers a wide-range of website hosting options, and we’ll help you select the one that is right for you.

websites_image1-1

Broad platform support

With AWS, you can use whatever CMS you like, including WordPress, Drupal, Joomla, and more. AWS also supports and provides SDKs for popular platforms like Java, Ruby, PHP, Node.js, and .Net.

websites_image3-1

Datacenters worldwide

Your customers can be anywhere in the world. With AWS you can have a datacenter or CDN hosting your website in any geography you choose with just a few mouse clicks. 

websites_image4-1

Scalable from day one

Website traffic can fluctuate a lot. From quiet times in the middle of the night, to campaign driven, social media sharing traffic spikes, AWS infrastructure that can grow and shrink to meet your needs.

websites_image2-1

Flexible pricing models

AWS only charges you for the resources you use, with no up-front costs or long-term contracts. AWS has web hosting options that offer pay-as-you-go pricing or fixed monthly pricing.


Simple websites typically consist of a single web server which runs either a Content Management System (CMS), such as WordPress, an eCommerce application, such as Magento, or a development stack, like LAMP. The software makes it easy to build, update, manage, and serve the content of your website.

Simple websites are best for low to medium trafficked sites with multiple authors and more frequent content changes, such as marketing websites, content websites or blogs. They provide a simple starting point for website which might grow in the future. While typically low cost, these sites require IT administration of the web server and are not built to be highly available or scalable beyond a few servers.

Best for:

  • Websites built on common applications like WordPress, Joomla, Drupal, Magento
  • Websites built on popular development stacks like LAMP, LEMP, MEAN, Node.Js
  • Websites that are unlikely to scale beyond 5 servers
  • Customers who want to manage their own web server and resources
  • Customers who want one console to manage their web server, DNS, and networking
Amazon Lightsail icon

Amazon Lightsail is the easiest way to launch and manage a Web server using AWS. Lightsail includes everything you need to jumpstart your Website – a virtual machine, SSD-based storage, data transfer, DNS management, and a static IP – for a low, predictable price.
You can get started using Lightsail for your website with just a few clicks. Choose the operating system or application template that's best for your website, and your virtual private server is ready in less than a minute. You can easily manage your web server, DNS, and IP addresses directly from the Lightsail console.

Try Lightsail free for 1 month

Static web apps that require only a single load in a web browser are referred to as Single page web apps. All subsequent actions by the user are made available through HTML, JavaScript, and CSS that are pre-loaded in the browser. Backend data is accessed via GraphQL or REST APIs that fetch content from a data store and update the UI without requiring a page reload.

Single page web apps offer native or desktop app-like performance. They offer all the static website benefits (low cost, high levels of reliability, no server adminstration, and scalability to handle enterprise-level traffic) with dynamic functionality and blazing fast performance.

Best for:

  • Websites built with Single page app frameworks such as React JS, Vue JS, Angular JS, and Nuxt.
  • Websites built with static site generators such as Gatsby JS, React-static, Jekyll, and Hugo.
  • Progressive web apps or PWAs
  • Websites that do not contain server-side scripting, like PHP or ASP.NET 
  • Websites that have serverless backends.
     
frameworks
amplify-logo-circle

The AWS Amplify Console provides a complete workflow for developing, deploying, and hosting single page web apps or static sites with serverless backends. You can add dynamic functionality to your app with the Amplify Framework, and then deploy it to your end users instantly with the Amplify Console. The Amplify Console offers a number of features:

  1. Continuous deployment allows you to deploy updates to your web app on every code commit.
  2. Deploy your app to a global audience using our CDN, Amazon CloudFront.
  3. Set up your custom domain with HTTPS automatically enabled in a single click.
  4. Work on new features without impacting production users with feature branch deployments.
Try AWS Amplify for free

Static websites deliver HTML, JavaScript, images, video and other files to your website visitors and contain no server-side application code, like PHP or ASP.NET. They typically are used to deliver personal or marketing sites.

Static websites are very low cost, provide high-levels of reliability, require no server administration, and scale to handle enterprise-level traffic with no additional work.

Best for:

  • Websites that do not contain server-side scripting, like PHP or ASP.NET 
  • Websites that change infrequently with few authors
  • Websites need to scale for occasional intervals of high traffic
  • Customers who do not want to manage infrastructure
     
Live Nation icons_Amazon-S3

Amazon S3 is object storage with a simple web service interface to store and retrieve any amount of data from anywhere on the web. It is designed to deliver 99.999999999% durability and scale past trillions of objects worldwide.

To use S3 for a static website, you simply upload files to an S3 bucket and configure your S3 bucket for web hosting.

Try Amazon S3 for free

Enterprise websites include very popular marketing and media sites, as well as social, travel, and other application-heavy websites. For example, Lamborghini, Coursera, and Nordstrom use AWS to host their websites. Enterprise websites need to dynamically scale resources and be highly available to support the most demanding and highly trafficked websites.

Enterprise websites use multiple AWS services and often span multiple data centers (called Availability Zones). Enterprise websites built on AWS provide high levels of availability, scalability, and performance, but require higher amounts of management and administration than static or simple websites. 

Best for:

  • Websites that use multiple web servers across at least two data centers
  • Websites that need to scale using load balancing, autoscaling, or external databases
  • Websites that require sustained high CPU utilization
  • Customers who need maximum control and flexibility for their web server configuration and administration
product-icon_Amazon_EC2_icon_squid_ink_125

Amazon EC2 provides resizable compute capacity in the cloud. It is designed to make web-scale cloud computing easier for developers and allows maximum scalability and availability for websites and web applications. Amazon EC2 changes the economics of computing by allowing you to pay only for capacity that you actually use.

To use EC2 to host your website, you will need to create and configure an EC2 instance in the AWS Management Console.

Try Amazon EC2 for free
#####EOF##### Amazon Web Services (AWS) – Layanan Komputasi Cloud

Jelajahi Produk Kami

Pemberdayaan Inovasi Pelanggan

  • Transformasi Perusahaan
  • Analisis Prediktif
  • Machine Learning
  • TANPA SERVER
  • Gaming
  • APLIKASI PERUSAHAAN
  • Transformasi Perusahaan
  • PI-C1_Logo

    Capital One Mencitrakan Ulang Perbankan Menggunakan AWS

    Pelajari cara Capital One mengimplementasikan strategi cloud pertama mereka melalui pendidikan, perencanaan jangka panjang, dan fokus konstan pada kebutuhan pelanggan.
    Pelajari Selengkapnya 
    PI-C1_Mobile_Step-1

    Fokus pada Pelanggan

    Pada tahun 2014, Capital One memiliki bibit kemampuan cloud privat dan juga bereksperimen dengan AWS. Dalam usaha untuk membangun fitur yang diinginkan pelanggan secepat mengkin, perusahaan memilih menggunakan AWS.

    PI-C1_Mobile_Step-2

    Melakukan Bagian yang Berat Lebih Dulu

    Keamanan dan kepatuhan adalah hal yang penting untuk Capital One sebagai lembaga keuangan. Untuk memenuhi kebutuhan ini, Capital One membangun kerangka kerja berisiko cloud dan mendirikan fungsi tata kelola cloud sebelum memindahkan satu pun beban kerja ke AWS.

    PI-C1_Mobile_Step-3

    Pendidikan: Kunci untuk Cloud

    Capital One menawarkan program pelatihan cloud untuk teknisi yang bekerja langsung di AWS serta pemangku kepentingan non-teknis yang perlu mengadvokasi kekuatan komputasi cloud. Perusahaan kini berada di peringkat tiga teratas dari semua perusahaan secara global untuk sertifikasi AWS yang diadakan karyawan.

    PI-C1_Mobile_Step-4

    Menyadari Manfaat Cloud

    Dengan menggunakan AWS, Capital One membawa produk baru ke pasar dalam waktu beberapa minggu alih-alih bulan atau tahun, menggunakan machine learning untuk meningkatkan pengalaman pelanggan, serta menarik pengembang dan teknisi terbaik—semuanya membantu perusahaan mencapai tujuannya yang paling penting: membuat pengalaman yang luar biasa bagi pelanggan.

  • Analisis Prediktif
  • F1-Insights-logo-power-by-AWS

    Grup Formula One Menggunakan Amazon SageMaker untuk Mengoptimalkan Pertandingan

    Pelajari bagaimana Formula 1 menggunakan Amazon SageMaker dan layanan AWS lainnya untuk mengoptimalkan keputusan pertandingan dan meningkatkan pengalaman penggemar.
    Pelajari Selengkapnya 
    PI-F1-1-mobile-beginning-a-transformation-ending

    Memulai Transformasi

    Grup Formula One memindahkan sebagian besar infrastrukturnya dari pusat data di lokasi ke AWS dan menstandardisasi di layanan machine-learning AWS—termasuk Amazon SageMaker.

    PI-F1-2-mobile-optimizing-racing-machine-learning-ending

    Mengoptimalkan Pertandingan dengan Machine Learning

    Menggunakan riwayat data pertandingan yang dikumpulkan dari mobil selama 65 tahun terakhir, ilmuwan data Formula 1 melatih model deep-learning yang membuat prediksi pertandingan dan membantu tim mengoptimalkan keputusan di tengah pertandingan. Model tersebut dapat memprediksi kapan tim harus memasukkan mobil mereka ke pit stop, menentukan waktu terbaik untuk mengganti ban, dan mengevaluasi bagaimana kinerja pengemudi.

    PI-F1-3-mobile-bringing-fans-into-the-track-ending

    Membawa Penggemar ke Jalur Balap

    Formula 1 kemudian menggunakan layanan streaming data, analisis, dan media AWS untuk mengirimkan wawasan tentang keputusan pengemudi dan kinerja mobil kepada lebih dari 500 juta penggemarnya.

    PI-F1-4-mobile-building-for-the-future-ending

    Membangun untuk Masa Depan

    Karena Formula 1 menjalankan beban kerja komputasi berkinerja tinggi di lingkungan yang dapat diskalakan di AWS, organisasi dapat berinovasi pada pengalaman pertandingan, desain mobil Formula 1 dan lainnya tanpa mengkhawatirkan kapasitas.

  • Machine Learning
  • Logo_Statcast-AI

    MLB Memilih AWS sebagai Penyedia Machine Learning Resmi

    Pelajari Bagaimana Liga Bisbol Profesional Amerika Menghasilkan Statistik Menggunakan AWS Machine Learning
    Pelajari Selengkapnya 
    PI-MLB-1-mobile-Foundation-Deep-Learning-ending stage

    Dasar untuk Deep Learning

    MLB telah mengumpulkan data statistik tentang pemain dan klubnya selama beberapa dekade, dan pada tahun 2015 MLB mulai menggunakan AWS untuk mengumpulkan dan mendistribusikan statistik hari pertandingan untuk meningkatkan pengalaman penggemar.

    PI-MLB-2-mobile-Enpowering-Developers-ending stage

    Memberdayakan Pengembang

    Dengan menggunakan Amazon SageMaker, MLB memberdayakan pengembang dan ilmuwan data untuk membangun, melatih, dan menerapkan model pembelajaran mesin pada skala apa pun.

    PI-MLB-3-Lightening the Load-ending stage

    Meringankan Beban

    Model-model ini membantu MLB menghilangkan proses manual, waktu-intensif yang terkait dengan pencatatan dan statistik, seperti pencatatan skor, menangkap catatan permainan, dan mengelompokkan pitch.

    PI-MLB-4-mobile-Personalizing-the-Game-ending stage

    Mempersonalisasi Pertandingan

    MLB berencana untuk bekerja dengan Amazon ML Solutions Lab untuk terus meningkatkan Statcast—teknologi pelacak yang menganalisis performa pemain—termasuk menguji ketepatan prediksi pitch dan membuat pengalaman pemirsa yang dipersonalisasi.

    PI-MLB-5-mobile-home-run-artificial-intelligence-ending stage

    Home Run denfan Kecerdasan Buatan

    MLB akan terus berinovasi menggunakan kecerdasan buatan. Rencana organisasi untuk menggunakan Amazon Comprehend untuk membangun model bahasa yang dapat membuat naskah untuk pertandingan langsung yang mensimulasi penyiar ikonik.

  • TANPA SERVER
  • Matson-logo

    Matson Mengoperasikan Pengiriman Global dan Bisnis Logistik di AWS

    Pelajari cara Matson menggunakan AWS untuk menggerakkan inovasi dan layanan pelanggan kelas-dunia, sekaligus mencapai keandalan, keamanan operasional dan penghematan biaya infrastruktur.
    Pelajari Selengkapnya 
    PI-Matson-Mobile_Step-1

    Pelacakan Kontainer Real-Time

    Matson membangun aplikasi seluler flagship untuk pelacakan kontainer global yang memungkinkan pelanggan melakukan pelacakan real-time pengiriman barang. Fitur berharga lain dalam aplikasi tersebut mencakup pencarian jadwal kapal yang interaktif, pencarian peta pangkalan berbasis lokasi, dan umpan kamera-gerbang langsung.

    PI-Matson-Mobile_Step-2

    Akses Perangkat Mobile

    Semua perangkat seluler mengakses AWS melalui Amazon API Gateway. Cara ini memberikan titik akhir lokasi edge yang mudah ditemukan untuk akses ke dalam sumber daya pada virtual private cloud Matson yang sudah tersedia.

    PI-Matson-Mobile_Step-3

    Komputasi Tanpa Server

    Fungsi AWS Lambda dirancang menggunakan pola layanan-mikro dan dimodelkan di sekitar konteks bisnis berbasis-lautan khusus, seperti pelacakan kapal dan jadwal kapal. 

    PI-Matson-Mobile_Step-4

    Konfigurasi dan Penyimpanan Database

    Amazon DynamoDB mengelola konfigurasi juga konfigurasi umpan balik pengguna dan pemberitahuan umpan balik pengguna yang dikirimkan dari perangkat seluler. DynamoDB Streams memberikan notifikasi real-time ke tim layanan pelanggan Matson. 

    PI-Matson-Mobile_Step-5

    Pemantauan dan Peringatan Data

    Pelanggan Matson mengandalkan pelacakan kontainer dan informasi status kapal akurat dan terbaru. Pemantauan dan peringatan kejadian sistem diarsipkan dengan menggunakan Amazon CloudWatch, Amazon SNS, Amazon SES, AWS Lambda, dan CloudWatch Logs. 

    PI-Matson-Mobile_Step-6

    Aplikasi Tanpa Server Ujung-ke-Ujung

    Matson sekarang dapat menawarkan aplikasi tanpa server ujung-ke-ujung kepada pelanggan untuk membantu melacak pengiriman, tanpa infrastruktur yang perlu dipelihara.

  • Gaming
  • PI-Epic_Logo_Final
    Epic Games menggunakan AWS untuk Mendukung Game Kelas Dunia Fortnite
    Pelajari cara Epic Games menggunakan AWS untuk mengirim Fortnite ke lebih dari 200 juta pemain di seluruh dunia.
    Pelajari Selengkapnya 
    PI-Epic-Mobile_Step-1

    Membangun Fondasi di Cloud

    Epic Games telah menggunakan AWS sejak 2012 dan kini sepenuhnya menggunakan AWS Cloud, menjalankan armada server game di seluruh dunia, sistem platform backend, database, situs web, jalur analitik, dan sistem pemrosesan di AWS.

    PI-Epic-Mobile_Step-2

    Sensasi dalam Satu Malam

    Pada 2017, Epic Games meluncurkan Fortnite, game antarplatform dan multipemain yang menjadi sensasi dalam semalam. Di tahun pertamanya, basis pengguna Fortnite tumbuh lebih dari 100 kali menjadi 200 juta pemain di seluruh dunia.

    PI-Epic-Mobile_Step-3

    Mendorong Batas Skala

    AWS merupakan bagian penting dari kesuksesan Fortnite. Dengan menggunakan AWS, Epic Games menyelenggarakan acara dalam game dengan ratusan juta pengguna yang diundang tanpa khawatir tentang kapasitas, memasukkan 125 juta acara per menit ke dalam saluran analitiknya, dan menangani pertumbuhan gudang data lebih dari 5 PB per bulan.

    PI-Epic-Mobile_Step-4

    Memberikan Pengalaman Gaming Terbaik

    Dengan AWS, Epic Games selalu meningkatkan pengalaman pemainnya serta menawarkan game dan elemen game yang baru dan menarik. Perusahaan berencana memperluas penggunaan layanan AWS di masa mendatang, termasuk machine learning dan layanan terkontainer.

  • APLIKASI PERUSAHAAN
  • BPP_ylw_logo

    BP Meningkatkan Keefektifan dan Mendapatkan Kelincahan Biaya dan Kecepatan untuk Aplikasi Bisnis yang Sangat Penting

    Lihat cara BP menyederhanakan dan memodernisasi suit aplikasi SAP, meningkatkan pengalaman pengguna sekaligus mendapatkan kelincahan biaya dan peningkatan kinerja.
    Pelajari Selengkapnya 
    PI-BP-Mobile_Step-1

    Mengelola Aplikasi Bisnis yang Sangat Penting

    Organisasi TI BP mengelola aplikasi SAP yang digunakan ribuan karyawan di seluruh dunia untuk rantai suplai, pengadaan, keuangan, dan masih banyak lagi. 

    PI-BP-Mobile_Step-2

    Meningkatkan Kecepatan & Kelincahan Biaya

    Untuk meningkatkan kecepatan dan mendapatkan kelincahan biaya, BP menggunakan Amazon EC2 untuk memindahkan aplikasi bisnis inti ini ke cloud. Sebagai tambahan, tim tersebut membangun instans EC2 X1 untuk meningkatkan skala dan untuk memberdayakan analitik real-time mereka.

    PI-BP-Mobile_Step-3

    Peningkatan Kinerja

    Tim tersebut sekarang dapat mendirikan sistem sesuai permintaan dalam hitungan jam alih-alih dalam minggu atau bulan. BP melihat peningkatan kinerja di seluruh papan, mencakup 40 persen peningkatan kecepatan untuk sistem ERP Pelumas. 

    PI-BP-Mobile_Step-4

    Pengamanan Data

    Sebagai bagian dari migrasi cloud, BP mengatur ulang standar keamanan menggunakan AWS Config, AWS Identity and Access Management (IAM), Amazon CloudWatch, dan AWS Trusted Advisor. Standar baru ini membantu BP mengembangkan kerangka kerja yang aman untuk pengoperasian organisasi TI.

AWSMP_logo_new-RGB

Temukan. Beli. Terapkan.

AWS Marketplace merupakan katalog digital dengan ribuan daftar perangkat lunak dari vendor perangkat lunak independen yang memudahkan pencarian, pengujian, dan penerapan perangkat lunak yang beroperasi di AWS.
Pelajari Selengkapnya 

Jelajahi Solusi Kami

60-machine-learning
Bangun dengan layanan dan platform yang kuat, dan dukungan kerangka kerja machine learning terluas di segala tempat.
60-analytics
Simpan, kategorikan, dan analisis secara aman semua data Anda dalam satu repositori terpusat.
60-IoT
Sebuah sistem perangkat yang ada di mana-mana dan menghubungkan dunia fisik dengan cloud.
60-serverless
Bangun dan jalankan aplikasi dan layanan tanpa memikirkan tentang server.
60-containers
Paketkan dan terapkan aplikasi yang ringan dan memberikan lingkungan perangkat lunak portabel yang konsisten supaya aplikasi dapat secara mudah dijalankan dan diskalakan di mana pun.
60-enterprise
Bangun dengan seperangkat layanan siap pakai yang secara khusus dirancang untuk persyaratan keamanan yang unik, kepatuhan, privasi, dan tata kelola organisasi yang besar.
60-storage
Pilihan pencadangan, pemulihan bencana, dan pengarsipan data pada skala petabyte yang tahan lama dan hemat biaya.
60-windows-workloads
Kapasitas komputasi yang fleksibel, dapat diskalakan untuk aplikasi Microsoft. Beban kerja Windows yang mudah dikelola dan aman.

Diciptakan untuk Memenuhi Persyaratan yang Sangat Menuntut

icon-security

Aman

Kemampuan keamanan komprehensif untuk memenuhi persyaratan yang sangat ketat.
icon-compliant

Kepatuhan

Kendali yang kaya, pengauditan, dan akreditasi keamanan yang luas.
icon-hybrid

Hybrid

Membangun arsitektur hybrid yang memperluas infrastruktur di lokasi Anda ke Cloud.
icon-scalable

Dapat Diskalakan

Mengakses sebanyak atau sesedikit yang dibutuhkan, dan menaikkan atau menurunkan skala seperlunya hanya dengan pemberitahuan beberapa menit sebelumnya.

Pelajari Bagaimana Pelanggan Kami Membangun di AWS

Jaringan Global Wilayah AWS

AWS Cloud tersebar di 61 Availability Zone dalam 20 Wilayah geografis di seluruh dunia, dengan rencana yang diumumkan untuk 12 Availability Zone lainnya dan empat wilayah tambahan di Bahrain, Cape Town, Hong Kong SAR, dan Milan.
2019 Infra Map - PDX
Key_AZ

Wilayah & Jumlah Availability Zone

AS Timur
Virginia U. (6), Ohio (3)

AS Barat
California U. (3), Oregon (4)

Asia Pasifik
Mumbai (2), Seoul (2), Singapura (3), Sydney (3), Tokyo (4), Osaka-Lokal (1)

Kanada
Pusat (2)

Tiongkok
Beijing (3), Ningxia (2)

Eropa
Frankfurt (3), Irlandia (3), London (3), Paris (3), Stockholm (3)

Amerika Selatan
São Paulo (3)

GovCloud (AS)
AS Timur (3), AS Barat (3)

Key_Coming-Soon

Wilayah Baru (Segera Hadir)

Bahrain

Cape Town

Daerah Administratif Khusus Hong Kong

Milan

Pelajari Selengkapnya 
#####EOF##### AWS | Government Cloud Computing - Federal & Local Government Cloud Services

Contact Public Sector Sales
Find a Partner

Government, education and nonprofit organizations face unique challenges to accomplish complex missions with limited resources. Public sector leaders engaged in true cloud computing projects overwhelmingly turn to the power and speed of Amazon Web Services when they want to serve citizens more effectively, achieve scientific breakthroughs, reach broader constituents and put more of their time and resources into their core missions.

Get started on your path to a cloud career. Join AWS Educate today!


National, regional and local governments around the world

Learn more »

Educational institutions, ed tech companies, and students

Learn more »

Nonprofit organizations, NGOs and tech companies serving nonprofits

Learn more »


homepage_demandingslide_Illustrations_secure

Comprehensive security capabilities to satisfy the most demanding information security requirements.

Learn more

homepage_demandingslide_Illustrations_private-isolated

Choose the right level of isolation for your apps, and integrate with existing resources.

Learn more

homepage_demandingslide_Illustrations_compliant

Rich controls, auditing and broad security accreditations to enable compliance with FedRAMP, CJIS, HIPAA, FERPA and more.

Learn more

homepage_demandingslide_Illustrations_hybrid

Build hybrid IT architectures that extend your on-premises infrastructure to the Cloud.

Learn more


Agencies at all levels of government rely on Amazon Web Services to accomplish their missions

Learn More

300x180_Vid-Thumb_NASA-JPL

When NASA/JPL faced the challenge of delivering images from Mars to every browser on Earth, they knew they would need an unconventional solution. From that moment through their current scientific missions, NASA/JPL has used Amazon Web Services (AWS) to capture, store and process images and data collected from the Mars Exploration Rover and the Mars Science Laboratory missions.

Read the story

 

By migrating to AWS, FINRA—the Financial Industry Regulatory Authority—has created a flexible platform that can adapt to changing market dynamics while providing its analysts with the tools to interactively query multi-petabyte data sets. FINRA, one of the largest independent securities regulators in the United States, was established to monitor and regulate financial trading practices.

Watch the video

 

finra

AWS offers the flexible, low cost infrastructure for educational institutions
Learn More

The University of Notre Dame is on the fast track to move at least 80% of its enterprise systems to the cloud. Learn how it all began when the university migrated its website and global student/faculty authentication stores to AWS. The university reports saving 40% on its annual IT operations by moving to AWS thus far.

Watch the video now

 

By using AWS, UMUC improved the performance of its analytics platform by twentyfold and enabled its engineers to focus on building new applications instead of managing IT infrastructure.

Watch the video

 


Nonprofit and non-governmental organizations across domains use AWS to reduce costs, increase reach and accelerate advanced analytics capabilities. 
Learn More

By moving to AWS and scaling infrastructure appropriately, the National Democratic Institute reduced costs by 90% and improved security by using AWS security groups and features.

Watch the video now

 

Today, PBS Interactive is delivering nearly all of its streaming video through Amazon CloudFront. This equates to more than one petabyte of video content delivered every month. In addition, PBS Interactive uses multiple third-party providers to transcode and segment mobile video assets, which are then delivered through Amazon CloudFront to PBS’ mobile apps for the Apple iPhone and iPad.

Read the story

 


Unique Technology Programs for Public Sector Needs

Public sector clients have unique computing needs. Amazon Web Services offers special programs to address these needs, including:

analytics_200x125

Scientific Computing resources help researchers in government, education or nonprofit institutions spin up the computing resources they need instantly. And qualified researchers can receive data egress waivers to make costs more predictable.

Learn more

Big-Data-Redesign_Compute-Optimized

Open Data:  Public sector organizations often hold data sets that could be useful to the public and private sectors alike. AWS helps make this data open and available for the public to discover, access, and use.  

Learn more

aws_educate_200x125

AWS Educate provides students and educators with receive free access to AWS technology, cloud courses, training and collaboration tools to build the next generation of cloud technology professionals.

Learn more


Within the public sector, IoT is being used for areas important to us all—water, transportation, public safety, city services, smart infrastructure, and health services, for instance. Sometimes IoT can seem so large that it’s hard to get a handle on it, but let’s consider IoT devices in terms of something we can relate to: the duties of being a citizen.

Contact Public Sector Sales
#####EOF##### Amazon.com : Lamy Accent 4pen Al KK Multi-System Pen 496 : Office Products

Loading recommendations for this item...

Added to Cart

Not Added

Item is in your Cart

View Cart

Not Added

There was a problem adding this item to Cart. Please try again later.
Sorry, we're having trouble showing recommendations right now. Please try again later.
Continue shopping
$76.13
In Stock.
Ships from and sold by Amazon Global Store UK.
Include Add a Protection Plan:
Add to your order

4 Year Office Equipment Protection Plan

from Asurion, LLC
  • No deductibles or added costs. Parts, labor and shipping included.
  • Power surge covered from day one.
  • Other breakdowns covered after the manufacturer's warranty expires.
  • Includes 24/7 tech support.  File a claim online or by phone 24/7.
  • If we can't repair it, we'll replace it or reimburse the purchase price with an Amazon e-gift card.

3 Year Office Equipment Protection Plan

from Asurion, LLC
  • No deductibles or added costs. Parts, labor and shipping included.
  • Power surge covered from day one.
  • Other breakdowns covered after the manufacturer's warranty expires.
  • Includes 24/7 tech support.  File a claim online or by phone 24/7.
  • If we can't repair it, we'll replace it or reimburse the purchase price with an Amazon e-gift card.

Have one to sell? Sell on Amazon

4 Year Office Equipment Protection Plan

from Asurion, LLC
$12.99
  • No deductibles or added costs. Parts, labor and shipping included.
  • Power surge covered from day one.
  • Other breakdowns covered after the manufacturer's warranty expires.
  • Includes 24/7 tech support.  File a claim online or by phone 24/7.
  • If we can't repair it, we'll replace it or reimburse the purchase price with an Amazon e-gift card.

Lamy Accent 4pen Al KK Multi-System Pen 496

by Lamy
1.0 out of 5 stars 1 customer review

Price: $76.13 + $10.64 Shipping
International product from outside the United States.
    This fits your .
  • Make sure this fits by entering your model number.
  • 4-in-1
  • Visual choice mechanism
  • Ball Pen Refill Lamy M 21 - black, blue and red
  • Lamy M 40 fine-line refill (0.7 mm)

Amazon Global Store UK

  • International products have separate terms, are sold from abroad and may differ from local products, including fit, age ratings, and language of product, labeling or instructions.
  • Manufacturer warranty may not apply
  • Learn more about Amazon Global Store.

What other items do customers buy after viewing this item?


Have a question?

Find answers in product info, Q&As, reviews

Please make sure that you are posting in the form of a question.

Don't see what you're looking for?
There was a problem completing your request. Please try your search again later.
All Product Information Customer Q&A's Customer Reviews

Product description

Lamy Accent Multifunction Pen This Pen has Red Black and Blue Ballpoints and 0.7MM Pencil.


Product information

Technical Details

Additional Information

Warranty & Support

Product Warranty: For warranty information about this product, please click here

Feedback

If you are a seller for this product, would you like to suggest updates through seller support?
Would you like to tell us about a lower price?

Compare with similar items


Lamy Accent 4pen Al KK Multi-System Pen 496
Lamy 2000 4 Color Ballpoint with Brushed Ss Clip (L401)
Uni "Jet Stream Prime" High Grade multi ballpoint pen 0.7mm 3 colors & Mechanical pencil 0.5mm (Black Red Blue) MSXE4-5000-07 (Black)
Sailor Pen multi-function pen professional gear Imperial Black 4 16-0539-220
Uni Jet Stream Prime High Grade multi ballpoint pen 3 colors (Black Red Blue) SXE3-3000-07 (Black)
Lamy 2000 Ball Point Pen Stainless Steel Clip - Black/Brushed
Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart Add to Cart
Customer Rating 1 out of 5 stars (1) 4 out of 5 stars (59) 4 out of 5 stars (34) 4 out of 5 stars (15) 5 out of 5 stars (18) 4 out of 5 stars (53)
Price $76.13 $69.37 $30.55 $38.71 $19.10 $50.99
Shipping — FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25 FREE Shipping on orders over $25
Sold By Amazon Global Store UK BIGFLY J-P-N-PRO-Inc. Choose a delivery option:Expedited J-P-N-PRO-Inc. Choose a delivery option:Expedited smile&fun Japan Angel Seller
Item Dimensions 4.72 x 4.72 x 4.72 in 1 x 1 x 1 in 54.65 x 6.34 x 4.61 in 7.09 x 2.91 x 1.5 in 5.64 x 0.68 x 0.43 in 1 x 1 x 1 in

Customer Questions & Answers

1 customer review

1.0 out of 5 stars

Review this product

Share your thoughts with other customers

April 1, 2019
Amazon FSA Store

#####EOF##### Data Lakes and Analytics | AWS

Data Lakes and Analytics on AWS

The most comprehensive, secure, scalable, and cost-effective portfolio of services to build your data lake and analytics solutions

AWS delivers an integrated suite of services that provide everything needed to quickly and easily build and manage a data lake for analytics. AWS-powered data lakes can handle the scale, agility, and flexibility required to combine different types of data and analytics approaches to gain deeper insights, in ways that traditional data silos and data warehouses cannot. AWS gives customers the widest array of analytics and machine learning services, for easy access to all relevant data, without compromising on security or governance.

There are more organizations with data lakes and analytics on AWS than anywhere else. Customers like NASDAQ, Zillow, Yelp, iRobot, and FINRA trust AWS to run their business critical analytics workloads.

Data Lakes and Analytics on AWS

Data Lakes and Analytics on AWS

To build your data lakes and analytics solution, AWS provides the most comprehensive set of services to move, store, and analyze your data.

aws-datalake-diagram-simplified

Data Movement

Import your data from on premises, and in real-time.

Data Lake

Store any type of data securely, from gigabytes to exabytes.

Analytics

Analyze your data with the broadest selection of analytics services.

Machine Learning

Predict future outcomes, and prescribe actions for rapid response.

Data Movement

The first step to building data lakes on AWS is to move data to the cloud. The physical limitations of bandwidth and transfer speeds restrict the ability to move data without major disruption, high costs, and time. To make data transfer easy and flexible, AWS provides the widest range of options to transfer data to the cloud.

To build ETL jobs and ML Transforms for your data lake, learn about AWS Lake Formation.

On-premises data movement

AWS provides multiple ways to move data from your datacenter to AWS. To establish a dedicated network connection between your network and AWS, you can use AWS Direct Connect. To move petabytes to exabytes of data to AWS using physical appliances, you can use AWS Snowball and AWS Snowmobile. To have your on-premises applications store data directly into AWS, you can use AWS Storage Gateway.  

Real-time data movement

AWS provides multiple ways to ingest real-time data generated from new sources such as websites, mobile apps, and internet-connected devices. To make it simple to capture and load streaming data or IoT device data, you can use Amazon Kinesis Data Firehose, Amazon Kinesis Video Streams, and AWS IoT Core.  

Data Lake

Once data is ready for the cloud, AWS makes it easy to store data in any format, securely, and at massive scale with Amazon S3 and Amazon Glacier. To make it easy for end users to discover the relevant data to use in their analysis, AWS Glue automatically creates a single catalog that is searchable, and queryable by users.

To build a secure data lake faster, learn more about AWS Lake Formation.

Object Storage

Amazon S3

Amazon S3 is secure, highly scalable, durable object storage with millisecond latency for data access. S3 is built to store any type of data from anywhere – web sites and mobile apps, corporate applications, and data from IoT sensors or devices. It is built to store and retrieve any amount of data, with unmatched availability, and built from the ground up to deliver 99.999999999% (11 nines) of durability. S3 Select focuses data read and retrieval, reducing response times up to 400%. S3 provides comprehensive security and compliance capabilities that meet even the most stringent regulatory requirements.  

Backup and Archive

Amazon Glacier

Amazon Glacier is secure, durable, and extremely low cost storage for long-term backup and archive that can access data in minutes, and similarly Glacier Select reads and retrieves only the data needed. It is designed to deliver 99.999999999% durability (11 nines), and provides comprehensive security and compliance capabilities that can help meet even the most stringent regulatory requirements. Customers can store data for as little as $0.004 per gigabyte per month, a significant savings compared to on-premises solutions.

Data Catalog

AWS Glue

AWS Glue is a fully managed service that provides a data catalog to make data in the data lake discoverable, and has the ability to do extract, transform, and load (ETL) to prepare data for analysis. The data catalog is automatically created as a persistent metadata store for all data assets, making all of the data searchable, and queryable in a single view.

Analytics

AWS provides the broadest, and most cost-effective set of analytic services that run on the data lake. Each analytic service is purpose-built for a wide range of analytics use cases such as interactive analysis, big data processing using Apache Spark and Hadoop, data warehousing, real-time analytics, operational analytics, dashboards, and visualizations.

To manage secure, self-service access to data in a data lake for analytics services, learn more about AWS Lake Formation.

Interactive Analytics

Amazon Athena

For interactive analysis, Amazon Athena makes it easy to analyze data directly in S3 and Glacier using standard SQL queries. Athena is serverless, so there is no infrastructure to setup or manage. You can start querying data instantly, get results in seconds and pay only for the queries you run. Simply point to your data in Amazon S3, define the schema, and start querying using standard SQL. Most results are delivered within seconds.  

Big Data Processing

Amazon EMR

For big data processing using the Spark and Hadoop frameworks, Amazon EMR provides a managed service that makes it easy, fast, and cost-effective to process vast amounts data. Amazon EMR supports 19 different open-source projects including Hadoop, Spark, HBase, and Presto, with managed EMR Notebooks for data engineering, data science development, and collaboration. Each project is updated in EMR within 30 days of a version release, ensuring you have the latest and greatest from the community, effortlessly.

Data Warehousing

Amazon Redshift

For data warehousing, Amazon Redshift provides the ability to run complex, analytic queries against petabytes of structured data, and includes Redshift Spectrum that runs SQL queries directly against Exabytes of structured or unstructured data in S3 without the need for unnecessary data movement. Amazon Redshift is less than a tenth of the cost of traditional solutions. Start small for just $0.25 per hour, and scale out to petabytes of data for $1,000 per terabyte per year.

Real-Time Analytics

Amazon Kinesis

For real-time analytics, Amazon Kinesis makes it easy to collect, process and analyze streaming data such as IoT telemetry data, application logs, and website clickstreams. This enable you to process, and analyze data as it arrives in your data lake, and respond in real-time instead of having to wait until all your data is collected before the processing can begin.

Operational Analytics

Amazon Elasticsearch Service

For operational analytics such as application monitoring, log analytics and clickstream analytics, Amazon Elasticsearch Service allows you to search, explore, filter, aggregate, and visualize your data in near real-time. Amazon Elasticsearch Service delivers Elasticsearch’s easy-to-use APIs and real-time analytics capabilities alongside the availability, scalability, and security that production workloads require.

 

Dashboards and Visualizations

Amazon QuickSight

For dashboards and visualizations, Amazon QuickSight provides you a fast, cloud-powered business analytics service, that that makes it easy to build stunning visualizations and rich dashboards that can be accessed from any browser or mobile device.

 

Machine Learning

For predictive analytics use cases, AWS provides a broad set of machine learning services, and tools that run on your data lake on AWS. Our services come from the knowledge and capability we’ve built up at Amazon, where ML has powered Amazon.com’s recommendation engines, supply chain, forecasting, fulfillment centers, and capacity planning.  

Frameworks and Interfaces

For expert machine learning practitioners and data scientists, AWS provides AWS Deep Learning AMIs  that make it easy to build deep learning models, and build clusters with ML and DL optimized GPU instances. AWS supports all the major machine learning frameworks, including Apache MXNet, TensorFlow, and Caffe2 so that you can bring or develop any model you choose. These capabilities provide unmatched power, speed, and efficiency that deep learning and machine learning workloads require.

Platform Services

For developers who want to get deep with ML, Amazon SageMaker is a platform service that makes the entire process of building, training, and deploying ML models easy by providing everything you need to connect to your training data, select, and optimize the best algorithm and framework, and deploy your model on auto-scaling clusters of Amazon EC2. SageMaker also includes hosted Jupyter notebooks that make it is easy to explore, and visualize your training data stored in Amazon S3.

Application Services

For developers who want to plug-in pre-built AI functionality into their apps, AWS provides solution-oriented APIs for computer vision, and natural language processing. These application services lets developers add intelligence to their applications without developing and training their own models.

More data lakes & analytics built on AWS than anywhere else

Why data lakes and analytics on AWS?

Flexibility and choice

AWS offers the broadest set of analytic tools and engines that analyzes data using open formats and open standards. You get to store your data in the standards-based data format of your choice such as CSV, ORC, Grok, Avro, and Parquet, and the flexibility to analyze the day in a variety of ways such as data warehousing, interactive SQL queries, real-time analytics, and big data processing. The breadth of analytics services that you can use with your data in AWS, ensures that your needs will be met for your existing and future analytics use cases.

Unmatched scalability and availability

Amazon S3 is built to store and retrieve any amount of data, with unmatched availability, and built from the ground up to deliver 99.999999999% (11 nines) of durability. It is the only storage offering that can store your data in multiple data centers across three availability zones within a single AWS Region for unmatched resilience to single data center issues, and the only storage offering that seamlessly replicates data between any regions.

Highly secure

S3 is the only cloud storage platform that allows you to apply access, log, and audit policies at the account and object level. S3 provides automatic server-side encryption, encryption with keys managed by the AWS Key Management Service (KMS), and encryption with keys that you manage. S3 encrypts data in transit when replicating across regions, and lets you use separate accounts for source and destination regions to protect against malicious insider deletions. To proactively detect early stages of an attack, Amazon Macie, an ML powered security service monitors data access activity for anomalies, and generates detailed alerts when it detects risk of unauthorized access or inadvertent data leaks.

Cost-effective

Data lakes built on AWS are the most cost-effective. Data that is infrequently used can be moved to Amazon Glacier which provides long-term backup and archive at very low costs. Amazon S3 management capabilities can analyze object access patterns to move infrequently used data to Glacier on-demand or automatically with lifecycle policies. You can begin querying the data with Amazon Athena for as little as $0.005/GB queried. Other analytics and machine learning services are priced with a pay-as-you-go approach for the resources you consume.

Fast performance

AWS analytic services like Amazon Redshift and Amazon Athena were built for fast interactive query performance to support large numbers of concurrent interactive queries. When running AWS' broad portfolio of analytics and machine learning services using Amazon S3 Select, only the subsets of data that are needed within objects are returned, leading to much faster queries up to 400% faster, and at a dramatically lower cost. Glacier Select provides a similar capability allowing you to retrieve archived data faster, and allowing you to extend your analytical capability over your data lake to include archival storage.  

 

The largest partner network

The AWS Partner Network (APN) has twice as many partner integrations than anyone else, with tens of thousands of partners, including consulting and independent software vendors, from all across the globe. This makes it easy to work and integrate with many of the same tools you use and love today. Data Lake Quick Starts, developed by AWS solution architects and partners, help you build, test, and deploy data lake solutions based on AWS best practices for security and high availability, in a few simple steps. 

 

Get started with AWS

icon1

Sign up for an AWS account

Instantly get access to the AWS Free Tier
 
icon2

Build a secure data lake in days

Read about AWS Lake Formation

 
icon3

Start building with AWS

Get started with data lakes on AWS

Deploy a data lake with AWS Quick Starts
Have more questions?
Contact us
#####EOF##### High Performance Computing (HPC) in the Cloud | Accelerated Computing

 

Imagine the problems you can solve with virtually unlimited infrastructure

Create a Free Account
Contact Sales

From weather modeling to genome mapping to the search for extraterrestrial intelligence, HPC has always been about solving the world’s most complex problems. HPC has primarily been an on-premises business, and engineers and researchers working on these HPC applications have always been constrained by infrastructure capacity available on-premises - often limiting their exploration of potential solutions to the constraints of available infrastructure capacity.

High Performance Computing on AWS enables engineers, analysts, and researchers to think beyond the limitations of on-premises HPC infrastructure. AWS HPC solutions address the infrastructure capacity, secure global collaboration, technology obsolescence, and capital expenditure constraints associated with on-premises HPC clusters to give you the freedom to tackle the most challenging HPC workloads and get to your results faster.

 


hpc-01

Instantly launch or scale up High Performance Computing clusters on AWS. By eliminating job queue times and scaling your cluster as large as needed, when needed, you can reduce the time to market or publication.

hpc-02

Focus on applications and research output over infrastructure maintenance and upgrades. When AWS upgrades hardware, you can gain access instantaneously — simply rewrite your cluster configuration file and reboot to move to the latest hardware.

hpc-03

Let your research dictate infrastructure, not the other way around. With the flexible configuration options AWS provides, you can start with your hypothesis and create HPC clusters that are optimized for your unique application requirements – GPU today, CPU tomorrow.

hpc-04

In addition to core service options for compute, storage, and databases, take advantage of the breadth of services and partners in the AWS ecosystem to enhance your workload. Options range from familiar solutions like NICE and Thinkbox to experimental builds with AWS Lambda.

hpc-05

Collaborate without compromising on security. Every AWS service provides encryption and options to grant granular permissions for each user while maintaining the ability to share data across approved users. Build solutions compliant with HIPAA, FISMA, FedRAMP, PCI, and more.

hpc-06

Let every dollar contribute meaningfully to your mission. Choose from a range of AWS services and only pay for what you use. No more paying for idle compute capacity, no long-term contracts, and no complex licensing involved. Optimize costs further with Amazon EC2 Spot Instances. 

  • Life Sciences

    Genomics

    The Algorithms, Machine, and People (AMP) Lab at UC Berkeley leveraged AWS to quickly scale the compute resources needed to analyze the algorithms that are used in genomics work. Learn more >>

    Computational Chemistry

    Novartis built a platform leveraging AWS to run approximately 87,000 compute cores to conduct 39 years of computational chemistry in 9 hours for a cost of $4,232. Learn more >>

    Biological Systems Simulation

    Penn State moved its research portal to AWS and made it easy for 6,000 researchers worldwide to design more than 50,000 synthetic DNA sequences. Learn more >>

    Protein Modeling

    The Computer Science department at San Francisco State University used Amazon EC2 to reduce costs and turnaround time to run machine learning workloads.  Learn more >>

    logo_amplab
    logo_novartis
    logo_penn-state
    logo_sfsu
  • Financial Services

    Capital Management and Reporting

    MAPFRE saved 88% on infrastructure costs and gained the ability to spin up a supercomputer on demand and shut it down when finished. Learn more >>

    Risk Management Portfolio Optimization

    Yuanta Securities Korea benefits from increased speed and lower costs by running financial models on AWS to assess market risk. Learn more >>

    Contract Pricing and Valuation  

    Aon Benfield moved its infrastructure to AWS and built a processing system that reduced policy recalculation time from hours or days to minutes. Learn more >>

    logo_mapfre
    logo_yuanta
    logo_aon
  • Design and Engineering

    Electronics Design Automation

    Cadence Design Systems used AWS to isolate workloads from one another and ensure users and applications didn’t compete for resources, which resulted in reduced regression times, quicker iterations, and shifted focus on optimization and agility. Learn more >>

    Computational Fluid Dynamics (CFD)

    TLG Aerospace used EC2 Spot Instances to access more memory and cores at a lower cost, allowing them to scale the number and size of increasingly demanding simulations. Learn more >>

    Engineering Simulation

    Ansys ran a simulation with Enhanced Networking-compatible EC2 instances and demonstrated near-ideal scalability well past 1000 cores and a reduced overall solution time even beyond 2000 cores. Learn more >>

    3D Rendering

    ZeroLight used AWS GPU instances to build an award-winning 3D car configuration tool to create a totally new, interactive user experience for customers on the showroom floor to select and configure their next automobile.

    Learn More>>

    logo_cadence
    logo_tlg-aerospace
    logo_ansys
  • Energy & Earth Sciences

    Weather Simulation

    The Weather Company redesigned its big data platform, forecasting systems, and applications to run natively in a cloud environment and reduced their on-premises environments from 13 to 6 data centers, freeing engineers to build network and application efficiency. Learn more >>

    Reservoir Simulation

    Rock Flow Dynamics used on-demand computing resources to run workloads to optimize the location of oil wells and water injection wells. What would have taken several years to complete was done over a 12-day period using AWS resources. Learn more >>

    Geographic Information Systems (GIS)

    Digital Globe used AWS to deliver petabytes of high-resolution Earth imagery, data, and analysis to its customers in weeks instead of months while saving on costs. Learn more >>

    Operations, Management, and Analytics

    Fugro Roames used AWS and Amazon EC2 Spot Instances to enable Ergon Energy to reduce the annual cost of vegetation management from AU$100 million to AU$60 million. Learn more >>

    logo_weathercompany
    logo_rfd
    logo_digital-globe
    logo_roames
Continuous Delivery

High Performance Computing workloads on AWS are run on virtual servers, known as instances, enabled by Amazon Elastic Compute Cloud (Amazon EC2). Amazon EC2 provides secure, resizable compute capacity in the cloud and is offered in a wide range of instance types so you can choose one optimized for your workload.

 Instance Type
Recommended HPC Use
Technical Highlights

C5n

Compute Optimized

Compute-intensive workloads, such as engineering and financial simulations, materials science and genomics processing, seismic processing, digital and analog simulations, fluid dynamics, computational lithography and metrology, weather simulations, and many more
  • Based on Intel Xeon Platinum processors, (Skylake)
  • Provides up to 36 cores (72 vCPUs) and up to 192 GiB of memory
  • Supports Intel Advanced Vector Extension 512 (AVX-512) vector processing instruction set
  • C5n instances provide up to 100 Gbps of network bandwidth and up to 14 Gbps of dedicated bandwidth to Amazon EBS. C5n instances also feature an over 30% larger memory footprint compared to C5 instances.

M5

General Purpose

Applications and workloads requiring a balance of memory-to-cores, and for general purpose computing such as HPC management nodes, license servers, remote login nodes, and others
  • Based on Intel Haswell and Broadwell processors
  • Provides up to 48 cores (96 vCPUs) and up to 384 GiB of memory

R5

Memory Optimized

Applications that require a higher ratio of memory-to-cores than C5 or M4 instances, including memory-intensive engineering and scientific simulations, semiconductor mask verification, and many others
  • Based on Intel Broadwell processors
  • Provides up to 48 cores (96 vCPUs) and up to 768 GiB of memory

P3

 Accelerated Computing

Engineering simulations, computational finance, seismic analysis, molecular modeling, genomics, rendering, and other GPU compute workloads
  • Provides up to 8 NVIDIA Tesla V100 Accelerators, powered by NVDIA Volta GV100 GPUs
  • Up 1 PFLOPS of mixed-precision, 125 TFLOPS of single-precision and 62 TFLOPS of double-precision floating point performance
  • Up to 300 GB/s throughput with NVIDIA NVLink GPU-to-GPU interconnect
  • Up to 64 vCPUs, 488 gigabytes of DRAM, and 25 gigabytes per second of dedicated aggregate network bandwidth

F1

Accelerated Computing

Parallel, hardware accelerated applications including video analytics, image processing, financial computing, genomics, and accelerated data analytics and search
  • Provides up to 8 Xilinx Virtex UltraScale+ VU9P FPGA devices in a single EC2 instance

G3

Accelerated Computing

High performance graphical applications, including graphical remote desktops, 3D modeling and simulation, medical and geospatial imaging, and video content delivery
  • Provides up to 4 NVIDIA Tesla M60 Accelerators, powered by NVDIA GM204 GPUs (Maxwell)
  • Optimized for graphics processing and remote visualization
  • Available with Amazon AppStream 2.0, a fully managed application streaming service allowing pre and post-processing of HPC workloads. Deliver HPC visualization applications to large groups of users on any desktop with an HTML5 browser.
  • Utilized by Amazon WorkSpaces Graphics bundles which enables GPU-accelerated virtual Windows desktops in the cloud. WorkSpaces Graphics bundles are designed for engineers and 3D application developers to use as an alternative to expensive graphics-capable workstations.

X1

Memory Optimized

Applications that require large amounts of memory per core, including in-memory analytics graph and sparse matrix processing, semiconductor timing analysis, and others
  • Based on Intel Haswell processors
  • Provides up to 64 cores (128 vCPUs) and up to 1,952 GiB of memory

X1e

Memory Optimized

Applications that require the highest amounts of memory per core, including high-performance databases, in-memory databases and other memory intensive enterprise applications
  • Based on Intel Haswell processors
  • Provides up to 64 cores (128 vCPUs) and up to 3,840 GiB of memory

Continuous Delivery

High Performance Computing workload management gains new levels of flexibility in the cloud, making resource and job orchestration an important consideration for your workload. AWS provides a range of solutions for workload orchestration: fully-managed services enable you to focus more on job requests and output over provisioning, configuring and optimizing the cluster and job scheduler, while self-managed solutions enable you to configure and maintain cloud-native clusters yourself, leveraging traditional job schedulers to use on AWS or in hybrid scenarios.

 AWS Offering
Description
Highlights
AWS Batch AWS Batch is a fully-managed service that enables you to easily run large-scale compute workloads on the cloud without having to worry about resource provisioning or managing schedulers. Interact with AWS Batch via the web console, AWS CLI, or SDKs.
  • Fully-managed service
  • Focus on your jobs and their resources instead of infrastructure
  • Reduce costs by easily using EC2 Spot and Reserved Instances
  • Easily prioritize work across tens of thousands of cores
AWS Lambda Run code without provisioning or managing servers, paying only for the compute time you consume.  Define short-duration functions written in a number of languages and allow Lambda to manage execution at scale.
  • Fully-managed service
  • Optimized for short-duration operations
  • Lambda is “Serverless” – pay only for what you use while your functions are running
AWS Step Functions A fully-managed service that makes it easy to coordinate the components of distributed applications and microservices using visual workflows.
  • Fully-managed service
  • Easily integrated with AWS Batch, AWS Lambda, and other services

AWS ParallelCluster
AWS ParallelCluster is a fully supported and maintained open source cluster management tool that makes it easy for scientists, researchers, and IT administrators to deploy and manage HPC clusters in the AWS cloud.
  • AWS supported  and maintained open source cluster management tool
  • Quickly deploy a cluster using AWS Batch or  third-party schedulers
  • Uses AWS CloudFormation for a base template 
EnginFrame HPC portal integrated with a wide range of open source and commercial batch scheduling systems. One-stop-shop for job submission, control and data management.
  • Runs on-premises, in the cloud or hybrid
  • "Single pane of glass” for multiple schedulers
  • Application templates

Continuous Delivery

AWS provides several options for storage, ranging from file systems attached to an EC2 instance to high performance object storage. Most HPC applications require shared access to data from multiple EC2 instances via a file system interface. AWS provides a native, scale-out shared file storage service (Amazon EFS) that provides a file system interface and file system semantics. HPC applications can also use AWS’ block storage offerings, either Amazon EBS or EC2 instance store, for general purpose working storage. Amazon S3 and Glacier provides low-cost storage options for long-term storage of large data sets.

 AWS Product
Description and recommended HPC usage
Highlights

Amazon EFS

 

A highly available and durable, multi-AZ, fully-managed file system

Recommended HPC Usage: Use as a shared file system for working storage

  • Scales to tens of thousands of cores
  • NFS mountable

Amazon EBS

 

Persistent block storage volumes for use with Amazon EC2 instances

Recommended HPC Usage: Use for high-IOPS and general purpose working storage

 

  • Lustre compatible
  • NFS mountable
  • Supports high-speed parallel computing systems via tools like Lustre and GPFS
  • Offers a range of choices for speed and cost optimization

Amazon EC2 Instance Store

 

Block storage included at no additional charge with select Amazon EC2 instance types

Recommended HPC Usage: Use for read-often temporary working storage

  • Included with select EC2 instance types
  • Fast I/O
  • Ephemeral Storage

Amazon S3

 

Object storage built to store and retrieve any amount of data from anywhere

Recommended HPC Usage: Primary durable and scalable storage for HPC data

  • Highly available
  • Highly durable
  • API accessible with PUT and GET requests

Amazon Glacier

 

A secure, durable, and extremely low-cost cloud storage service for data archiving an dlong-term backup

Recommended HPC Usage: Use for long-term, lower-cost archival of HPC data

  • Life cycle tools archive data automatically
  • Extremely economical
  • Retrieval times on the order of hours

Continuous Delivery

The AWS network is designed for scale. Whether your application requires thousands of cores for one tightly-coupled workload, hundreds-of-thousands of cores for embarrassingly-parallel, high-throughput computing (HTC) applications, or a mixture of both, the AWS network offers performance (high bandwidth, low latency) and scalability.

AWS optimizes and custom builds hardware specifically for AWS infrastructure. Cut-through routing combined with AWS large scale means even the biggest customers see consistent latency and high bandwidth when using the most challenging application communication patterns. 

Networking Feature
Description and EC2 Instance Type Compatibility
Benefits
Cluster Placement Groups

Cluster Placement Groups are logical groupings or clusters of instances in the selected AWS region.

EC2 Instance Type Compatibility: All instance types that support enhanced networking can be launched within a Cluster Placement Group. Learn more >>

  • Allow for reliably low latency with up to 25 Gbps bandwidth between instances
  • Elastically scalable as desired
Elastic Network Adapter (ENA)

Elastic Network Adapter (ENA) is a custom network interface optimized to deliver high throughput and packet per second (PPS) performance.

EC2 Instance Type Compatibility: ENA is currently supported on M5, C5, H1, I3 P3, P2, G3 R4, X1, and m4.16xlarge instance types. Learn more >>

  • All the advantages of generation one 
  • Future-proofed driver: designed to support up to 400 Gbps networking without requiring a driver change
  • Utilize up to 25 Gbps of network bandwidth on certain EC2 instance types
Elastic Fabric Adapter (EFA)

Elastic Fabric Adapter (EFA) is a network interface for Amazon EC2 instances that enables customers to run HPC applications requiring high levels of inter-instance communications, like computational fluid dynamics, weather modeling, and reservoir simulation, at scale on AWS. With EFA, HPC applications using popular HPC technologies like Message Passing Interface (MPI) can scale to thousands of CPU cores. 

EFA is available as an optional EC2 networking feature that you can enable on C5n.9xl, C5n.18xl, and P3dn.24xl instances. Additional instance types will be supported in the coming months.

Sign up for a preview of EFA capabilities to enhance your HPC applications.

  • Supports industry-standard libfabric APIs, so applications that use a supported MPI library can be migrated to AWS with little or no modification
  • Supported on EC2 instances that provide 100Gbps sustained network throughput
  • EFA support can be enabled at instance startup or on a stopped instance

 


Continuous Delivery

From preparing simulation input data to interpreting computing job outputs, high performance graphics tasks are part of many HPC workloads. AWS offers several products to improve the performance, cost and flexibility of running OpenGL, Direct/X and other graphics applications. You can accelerate graphics performance by using the GPU-powered G2 and G3 instances or Elastic GPU, and stream Windows graphics with AppStream 2.0, WorkSpaces, or NICE DCV. If you prefer a Linux-based graphics platform, combining the streaming performance of NICE DCV and the EnginFrame HPC portal can deliver end-to-end workflows to end users across on-premises, hybrid cloud, or full-AWS configurations.

 Offering
Description
Highlights
NICE DCV A secure streaming protocol optimized for high end graphics, with dynamic bandwidth management
  • Move pixels and keep HPC data centralized
  • Enable remote access to Linux and Windows 3D applications
  • Fluid and responsive experience over a wide network area
  • Consistent experience on premises and on AWS
NICE EnginFrame An HPC Portal with built-in interactive session management and batch-interactive workflow support
  • One-stop-shop for all HPC user needs
  • Simplify collaboration
  • Consistent experience on premises and on AWS
Amazon EC2 Elastic GPU and G3 Instances
Allow you to easily attach low-cost graphics acceleration to current generation EC2 instances
  • Ideal If you need a small amount of GPU for graphics acceleration, or have applications that could benefit from some GPU, but also require high amounts of compute, memory, or storage
  • Capable of running a variety of graphics workloads, such as 3D modeling and rendering, with similar workstation performance compared to direct-attached GPUs.
Amazon AppStream 2.0
A fully managed, secure application streaming service that allows you to stream desktop applications from AWS to any device running a web browser
  • Visualization applications run next to your HPC data ensuring a high quality, low latency visualization experience
  • Users have secure, anywhere, anytime access to their applications so they can be productive wherever there is a web connection
  • Application delivery using NICE DCV protocol which is optimized for graphics
Amazon Workspaces A fully managed, secure Desktop-as-a-Service (DaaS) solution which runs on AWS. WorkSpaces includes GPU-accelerated bundles, which supports engineering, design, and architectural applications while providing the benefits of security, economics, flexibility, and agility in the cloud.
  • Faster visualization of simulation results because your apps can reside next to your data in the cloud
  • Support for 3D application development, 3D modeling, CAD, CAM, and CAE tools
  • Desktop streaming to a multitude of supported devices including Windows and Mac PCs, PCoIP zero clients, Chromebooks, iPads, Fire tablets, Android tablets, and even select smartphones
Continuous Delivery

AWS offers you a pay-as-you-go approach for pricing for over 70 cloud services. With AWS you pay only for the individual services you need, for as long as you use them, and without requiring long-term contracts or complex licensing. AWS pricing is similar to how you pay for utilities like water or electricity. You only pay for the services you consume, and once you stop using them, there are no additional costs or termination fees. Learn more about how pricing works on AWS >>

There are three main ways to pay for your compute capacity on Amazon EC2: On-Demand, Reserved Instances, and Spot Instances.

Compute Pricing Model
Description
Recommended HPC Use:
On Demand Instances With On-Demand instances, you pay for compute capacity by the hour with no long-term commitments or upfront payments. You can increase or decrease your compute capacity depending on the demands of your application and only pay the specified hourly rate for the instances you use.
  • Users that prefer the low cost and flexibility of Amazon EC2 without any up-front payment or long-term commitment
  • Applications being developed or tested on Amazon EC2 for the first time (POCs)
  • Applications with short-term, spiky, or unpredictable workloads that cannot be interrupted
  • Urgent and high-priority workloads
Spot Instances Spot Instances is a pricing model that enables you to bid on unused Amazon EC2 capacity at whatever price you choose. When your bid exceeds the Spot price, you gain access to the available Spot Instances and run as long as the bid exceeds the Spot Price. Historically, the Spot price has been 50% to 93% lower than the on-demand price. Learn more about optimizing scientific computing costs with Spot Instances >>
  • Workloads that can tolerate interruptions
  • Applications that have flexible start and end times
  • Applications that are only feasible at very low compute prices
Reserved Instances Reserved Instances provide you with a significant discount (up to 75%) compared to On-Demand instance pricing. In addition, when Reserved Instances are assigned to a specific Availability Zone, they provide a capacity reservation, giving you additional confidence in your ability to launch instances when you need them.
  • Customers that can commit to using EC2 over a 1 or 3 year term to reduce their total computing costs
  • Applications with steady state usage

AWS Partners provide professional services or software solutions to enable workloads on AWS. Browse our selection of featured partners and learn more.

 

Sign up for an account and launch a sample HPC workload today.

Homepage_v6-01

Your account will be within the AWS Free Tier, which enables you to gain free, hands-on experience with the AWS platform, products, and services.

Homepage_v6-03

Build your HPC production solution quickly and easily once you're ready.

Get Started for Free
#####EOF##### #####EOF##### After On: A Novel of Silicon Valley - Kindle edition by Rob Reid. Mystery, Thriller & Suspense Kindle eBooks @ Amazon.com.

Buying Options

Kindle Price: $11.99

Save $5.01 (29%)

These promotions will be applied to this item:

Some promotions may be combined; others are not eligible to be combined with other offers. For details, please see the Terms & Conditions associated with these promotions.

Deliver to your Kindle or other device

Buy for others

Give as a gift or purchase for a team or group. Learn more

Buying and sending eBooks to others


Select quantity
Buy and send eBooks
Recipients can read on any device

Additional gift options are available when buying one eBook at a time. Learn more


These ebooks can only be redeemed by recipients in the US. Redemption links and eBooks cannot be resold.

Quantity:
This item has a maximum order quantity limit.

Deliver to your Kindle or other device

<Embed>
Kindle App Ad
After On: A Novel of Silicon Valley by [Reid, Rob]
Audible Sample
Playing...
Loading...
Paused

Follow the Author

Something went wrong. Please try your request again later.


After On: A Novel of Silicon Valley Kindle Edition

4.1 out of 5 stars 147 customer reviews

See all 4 formats and editions Hide other formats and editions
Price
New from Used from
Kindle
$11.99

Length: 554 pages Word Wise: Enabled Enhanced Typesetting: Enabled
Page Flip: Enabled Audible book:
Audible book
Switch back and forth between reading the Kindle book and listening to the Audible book with Whispersync for Voice. Add the Audible book for a reduced price of $9.99 when you buy the Kindle book.
Available
  • Due to its large file size, this book may take longer to download

An Amazon Book with Buzz: "Maybe You Should Talk to Someone"
"This is a daring, delightful, and transformative book." ―Arianna Huffington, Founder, Huffington Post Learn more

Enter your mobile number or email address below and we'll send you a link to download the free Kindle App. Then you can start reading Kindle books on your smartphone, tablet, or computer - no Kindle device required.

  • Apple
    Apple
  • Android
    Android
  • Windows Phone
    Windows Phone
  • Click here to download from Amazon appstore
    Android

To get the free app, enter your mobile phone number.

kcpAppSendButton

Editorial Reviews

Review

“An extended philosophy seminar run by a dozen insane Cold War heads-of-station, three millennial COOs and that guy you went to college with who always had the best weed but never did his laundry.”—NPR
 
“An epic cyberthriller peppered with pop-culture references, metadata, and Silicon Valley in-jokes.”Kirkus Reviews
 
“It’s rare to find a book that combines laugh-out-loud humor and cutting-edge science with profound philosophical speculation. This is that book.”—Analog
 
“[Rob Reid] writes in a humorous and sarcastic style while unveiling a terrifying and frightening scenario that seems all too real.”—Associated Press

“Enter a near-future Silicon Valley that is hilariously, creepily, mind-bogglingly fantastic, yet at the same time all too believable. It might turn out this way. No, really, it might! Along with After On’s diabolically ingenious plot, there are crazy-plausible web startups, delicious parodies of social media, and a surprisingly convincing theory of human consciousness.”—Chris Anderson, head of TED

“Reading After On is like attending a master class in nearly every major issue haunting not only the tech industry but society itself. Only the professor is also a stand-up comic with a perfect ear for the foibles of Silicon Valley’s most sacred cows. Part AI thriller, part arch social commentary, and part rollicking farce, After On will leave you smarter about just about everything the human species needs to work on if we’re going to outlive our own creations—and our obsessions with them.”—John Battelle, co-founder, NewCo, Federated Media, and Wired

“The future is already here—it’s just for those who read Reid!”—Steve Jurvetson, venture capitalist, Draper Fisher Jurvetson

“Rob Reid doesn’t write science fiction; he writes future history. After On is the best account I’ve read of how superintelligence will arrive and what it will mean for all of us. Hilarious, frightening, believable, and marvelously constructed—After On has it all.”—Hugh Howey, New York Times bestselling author of Wool

After On is smart, hilarious, and properly cynical about our connected world. The story unfolds in surprising and fiendish ways, and while you’re laughing you’ll learn enough to confound a wily MBA, manipulate a board of directors, and maybe even outfox a superintelligence.”—Ken Fisher, founder and editor in chief, Ars Technica

“Topics like AI, neuroscience, quantum computing, and gene splicing are usually both a blessing and a curse: incredibly fascinating material explained super-boringly. After On manages to be an exception to the rule, weaving all of those topics into a funny, delightful story that’s full of surprises.”—Tim Urban, creator, Wait But Why

“Rips the lid off Silicon Valley! And what lies beneath.”—Stewart Brand, creator, Whole Earth Catalog

About the Author

Rob Reid founded Listen.com, which built the pioneering online music service Rhapsody, and created the unlimited subscription model since adopted by Apple, Spotify, and many others. He is the author of the New York Times bestseller Year Zero, a work of fiction; Year One, a memoir about student life at Harvard Business School; and Architects of the Web, the first true business history of the Internet. He lives in New York City with his wife, Morgan, and Ashby the Dog.

Product details

  • File Size: 11577 KB
  • Print Length: 554 pages
  • Page Numbers Source ISBN: 152479807X
  • Publisher: Del Rey (August 1, 2017)
  • Publication Date: August 1, 2017
  • Sold by: Random House LLC
  • Language: English
  • ASIN: B06XZSNB3W
  • Text-to-Speech: Enabled
  • X-Ray:
  • Word Wise: Enabled
  • Lending: Not Enabled
  • Screen Reader: Supported
  • Enhanced Typesetting: Enabled
  • Amazon Best Sellers Rank: #137,661 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  • Would you like to tell us about a lower price?


147 customer reviews

4.1 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

August 1, 2017
Format: HardcoverVerified Purchase
46 people found this helpful
Comment Report abuse
August 1, 2017
Format: HardcoverVerified Purchase
21 people found this helpful
Comment Report abuse
June 15, 2018
Format: HardcoverVerified Purchase
6 people found this helpful
Comment Report abuse
August 1, 2017
Format: Kindle EditionVerified Purchase
19 people found this helpful
Comment Report abuse
October 19, 2017
Format: HardcoverVerified Purchase
5 people found this helpful
Comment Report abuse

Set up an Amazon Giveaway

After On: A Novel of Silicon Valley
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: After On: A Novel of Silicon Valley
#####EOF##### Transform your manufacturing operations with AWS Cloud

Manufacturing

Optimize production, speed time to market, and deliver innovative products and services with AWS Cloud

Amazon Web Services (AWS) secure, agile, and scalable platform and comprehensive set of Industrial IoT, data lake, analytics, and machine learning tools allow you to develop smart factories and products, provide insights to increase your operational efficiency, and accelerate your pace of innovation. Our virtually unlimited storage and High Performance Computing capability enable you to innovate faster, rapidly design and verify new products, and scale seamlessly to meet increasing demand.

AWS allows you to focus your resources on optimizing production, creating new smart-product business opportunities, and improving operational efficiencies across the value chain, while improving your security posture and lowering your IT and OT cost structure.

 

Smart Factory and Manufacturing with AWS Cloud

Explore manufacturing processes in the cloud

The Industrial Internet of Things and Industry 4.0 promises the next revolution for manufacturing.   Learn how AWS Cloud helps manufacturers digitally transform in multiple process areas to improve business operations

AWS-for-Manufacturing_Product-Design_Segment

Product & Production Design

High Performance Computing (HPC) allows product developers and engineers to solve complex problems using model-based design and large-scale, parallel simulations.  AWS helps you:

  • Focus on product design, not the infrastructure to make it happen
  • Accelerate time-to-results and time-to-market by running large numbers of parallel tasks in the cloud
  • Reduce costs by providing optimized CPU, GPU, and FPGA servers on-demand

Learn more »

AWS-for-Manufacturing_Production-&-Operations_Segment

Smart Factory

Leverage AWS IoT Services, edge computing, data lakes, and advanced analytics tools to improve manufacturing operations by capturing, analyzing, visualizing, and executing on plant floor data.  AWS helps your Smart Factory improve business operations by:

  • Enabling access to disparate plant data to improve Overall Equipment Effectiveness (OEE)
  • Adding AI and Machine Learning for real time and predictive analytics capabilities
  • Creating a disaster recovery plan in the cloud
 
AWS-for-Manufacturing_Smart-Product_Segment

Smart Products & Services

Create smart products using IoT and Data Lakes.  Innovate your smart connected product offerings using AWS services such as IoT, Machine Learning, Artificial Intelligence, and Big Data to collect, process, store, analyze, and act on machine data.  AWS helps you:

  • Offer a product as a service
  • Enable post sale revenue models
  • Predict and proactively resolve issues in the field to maintain SLAs or Service Level Agreements
 

AWS for manufacturing benefits

Improve Operations

AWS makes it easy to build and tailor your data lake allowing you to securely store, categorize, and analyze all your data in one, centralized repository. Add a wide variety of cost effective and powerful analytics products to process, analyze, and visualize data.  Provide real-time and predictive analytics to improve overall equipment effectiveness (OEE), service levels, product quality, and supply chain efficiency.

Innovate Faster

AWS virtually unlimited High Performance Compute (HPC) capacity allows you to improve your pace of innovation without the need for large capital investments. Running HPC in the cloud allows designers, scientists and engineers to solve complex, compute-intensive problems quickly enabling you to reduce time-to-results by scaling to larger numbers of parallel tasks than would be practical in most on-premises environments.

Lower IT/OT Costs

Focus on improving business operations and innovation, not IT and OT infrastructure.  AWS pay-as-you-go microservices and serverless computing models reduce the cost of running your connected plant or smart product programs. With minimum upfront investment and nearly unlimited on-demand capacity, you can focus on differentiating your business not on infrastructure.

Enhanced Security

Cloud security at AWS is the highest priority. As an AWS customer, you benefit from a data center and network architecture built to meet the requirements of the most security-sensitive organizations.  OT infrastructure cyber-attacks have recently risen dramatically. Protect your factory by leveraging S3 and other storage services in the AWS Cloud for a robust disaster recovery plan.

Top Use Cases for Industrial IoT Applications ebook

Download this ebook and learn the top challenges with building Industrial IoT applications, and how AWS IoT in the cloud helps address these challenges.

 

These manufacturing customers have embraced the cloud in their Industrial IoT journey.  See how they make Smart Manufacturing a reality:

600x400_AWS-for-Manufacturing_Autodesk

"AWS allows us to focus on simulation and generative design rather than on managing storage and databases, while bringing down the cost of computing and giving us the horsepower we need."

- Brian Mathews, VP Platform Engineering

Learn more »

600x400_AWS-for-Manufacturing_Siemens

“We’ve listened to our customer’s demand for high availability and global scale, and are embracing a new AWS first approach to MindSphere.”

- Steve Bashada, EVP Cloud Application Services

Learn more »

600x400_AWS-for-Manufacturing_GE

“We chose AWS as the preferred cloud provider for GE because AWS’s industry leading cloud services have allowed us to push the boundaries, think big, and deliver better outcomes for GE.”

-Chris Drumgoole, CTO and Corporate VP

Learn more »

600x400_AWS-for-Manufacturing_National-Instruments

"With Amazon EC2 Spot Instances, we easily save 85–90% in costs. That, in turn, allows us to experiment with less risk and ultimately develop higher-quality products for our customers."

- Joe Gardner, Principal Cloud Architect

Learn more »

 

Get started with AWS

Leading manufacturing companies are already using AWS. Contact our experts and start your own AWS Cloud journey today.

#####EOF##### Amazon.com : TOMS OF MAINE TTHPASTE WHTE SPEARMINT : Toms Sensitive Toothpaste : Beauty
Available from these sellers.

3 Flavors: Spearmint
4 Sizes: 4.7 Ounce



TOMS OF MAINE TTHPASTE WHTE SPEARMINT

4.4 out of 5 stars 162 customer reviews


There is a newer version of this item:


About the product
  • Helps whiten teeth
Amazon FSA Store


Customers recommend

Discover Additional Products

Neutrogena Makeup Removing Wipes, 25 Count, Twin Pack
$8.97
Added to Cart
CeraVe Moisturizing Cream | 19 Ounce | Daily Face and Body Moisturizer for Dry Skin
$15.06
Added to Cart
Thayers Alcohol-Free Rose Petal Witch Hazel Toner with Aloe Vera Formula-12 Oz, 14.30 Ounce
$9.31
Added to Cart

Discover Related Products

Hello Oral Care Kids Fluoride Free and SLS Free Toothpaste, Natural Watermelon, 4.2 Ounce
$3.96
Added to Cart
Verve Ultra SLS-Free Toothpaste with Fluoride, 4.5 oz.
$7.99
Added to Cart
Tom's of Maine Long Lasting Wicked Fresh Cool Mountain Mouth Wash Bottle, Mint, 16 Ounce ( Pack of 6 )
$28.74
Added to Cart
Added to your Cart

Have a question?

Find answers in product info, Q&As, reviews

Please make sure that you are posting in the form of a question.

Don't see what you're looking for?
There was a problem completing your request. Please try your search again later.
All Product Information Customer Q&A's Customer Reviews

Product description

Flavor:Spearmint  |  Size:4.7 Ounce

Toms Of Maine Toothpaste White Spearmint. Helps whiten teeth. This product is manufactured in United States. Freezing and Chilling Temperature of the product is Ambient: Room Temperature.


Product details

Flavor: Spearmint | Size: 4.7 Ounce
  • Product Dimensions: 1.4 x 2.2 x 7.2 inches ; 0.96 ounces
  • Shipping Weight: 5.6 ounces
  • ASIN: B008QMWKES
  • UPC: 077326832141
  • Item model number: 683214
  • Average Customer Review: 4.4 out of 5 stars 162 customer reviews
  • Amazon Best Sellers Rank: #246,469 in Beauty & Personal Care (See Top 100 in Beauty & Personal Care)
  • Product Warranty: For warranty information about this product, please click here

    Would you like to tell us about a lower price?


Important information

Ingredients
Sorbitol, hydrated silica, water, glycerin, xylitol, organic aloe barbadensis leaf juice, lauryl glu

Directions
Helps remove plaque build-up with regular brushing.Brush thoroughly, preferably after each meal but at least twice a day, or as directed by a dentist or physician.

Customer Questions & Answers

162 customer reviews

4.4 out of 5 stars

Review this product

Share your thoughts with other customers

Read reviews that mention

July 21, 2018
Flavor: PeppermintSize: 4.7 OunceVerified Purchase
4 people found this helpful
Comment Report abuse
October 31, 2018
Flavor: PeppermintSize: 4.7 OunceVerified Purchase
One person found this helpful
Comment Report abuse
March 27, 2019
Flavor: PeppermintSize: 4.7 OunceVerified Purchase
August 28, 2018
Flavor: PeppermintSize: 4.7 OunceVerified Purchase
January 4, 2016
Flavor: PeppermintSize: 4.7 OunceVerified Purchase
2 people found this helpful
Comment Report abuse
July 3, 2018
Flavor: PeppermintSize: 4.7 OunceVerified Purchase
September 1, 2015
Flavor: SpearmintSize: 4.7 OunceVerified Purchase
November 4, 2018
Flavor: PeppermintSize: 4.7 OunceVerified Purchase

Set up an Amazon Giveaway

TOMS OF MAINE TTHPASTE WHTE SPEARMINT
Amazon Giveaway allows you to run promotional giveaways in order to create buzz, reward your audience, and attract new followers and customers. Learn more about Amazon Giveaway
This item: TOMS OF MAINE TTHPASTE WHTE SPEARMINT
Amazon FSA Store

Disclaimer: While we work to ensure that product information is correct, on occasion manufacturers may alter their ingredient lists. Actual product packaging and materials may contain more and/or different information than that shown on our Web site. We recommend that you do not solely rely on the information presented and that you always read labels, warnings, and directions before using or consuming a product. For additional information about a product, please contact the manufacturer. Content on this site is for reference purposes and is not intended to substitute for advice given by a physician, pharmacist, or other licensed health-care professional. You should not use this information as self-diagnosis or for treating a health problem or disease. Contact your health-care provider immediately if you suspect that you have a medical problem. Information and statements regarding dietary supplements have not been evaluated by the Food and Drug Administration and are not intended to diagnose, treat, cure, or prevent any disease or health condition. Amazon.com assumes no liability for inaccuracies or misstatements about products.


#####EOF##### AWS for Developers | Programming Languages, Tools, Community | AWS Developer Center

AWS Developer Center

Welcome developers! The AWS Developer Center is your homepage for the AWS developer community. Build your first application on AWS, dig into our technical documentation, or share your ideas with the community worldwide.

Build Your First Application

Dive into AWS and build your first web application. In this tutorial, you'll learn to build and deploy a web application on AWS, connect your app to a backend database, and capture & analyze data on user behavior.


Choose Your Programming Language

Find the tools, documentation, and sample code to develop applications in your favorite language

java programming language
javascript programming language
C# programming language and .net framework
PHP programming language
python programming language
ruby programming language
Go programming language SDK
C++ programming language SDK

Find Documentation

Access our user guides, API references, and release notes. View documentation »

Learn with Introductory Tutorials & Projects

New to AWS? Get started with simple step-by-step tutorials to launch your first workload. View tutorials »

See Others Build on AWS

Capital One: Learn How to Test Your AWS Resources
SparkPost: Use Lambda to Archive Data from Redis to S3
GameStop/Pariveda: Build Smart Deployment Pipelines

Start Developing on AWS Today

#####EOF##### Business Applications | Cloud Apps & Enterprise Software | AWS

twitter_business-applications_lightblue
Create a Free Account
Contact Sales

Enterprises require that their mission critical business applications such as Microsoft, SAP and Oracle are up and running 24x7. However, enterprises today are also building business apps in the cloud, in order to increase revenue. Whatever it is, the requirements are the same: Availability, agility and flexibility are key. Companies of all sizes are running their business  apps in the cloud to simplify infrastructure management, deploy more quickly, lower cost, and increase revenue. Run your existing software on AWS, while building the future of your business on AWS as well.


600x400_MLBAM

600x400_Dole-Logo

kellogg

Time to market is critical in today's competitive environment. Building new, revenue generating software and cloud apps that will increase the business's revenue is a must. Amazon Web Services can help take you into the future of your business with a breadth of services designed to help you build the software and applications needed to remain ahead of the curve.

Benefit_Global_Yellow
Benefit_Performance_Red

AWS's secured, reliable global infrastructure is designed to ensure you have a robust platform that allows you to plan for any disaster. With the largest global infrastructure of any cloud provider, AWS is able to help you quickly deploy your applications and data everywhere your customers reside.

Learn more about the AWS Global Infrastructure »

More than ever, time to market is critical. With services like CodeDeploy, Opsworks, Lambda, and others, you can build any application critical to your business in a matter of minutes. If you're looking to for virtual desktops, WorkSpaces allows organizations to leverage all the benefits of virtual desktops without the complexity of deploying and managing them.

Learn more about our cloud products »

 

Benefit_Secure_Green
Benefit_Ecosystem_Blue

Security is critical for any organization, and AWS understands this. AWS has developed a number of security services to ensure your environment never experiences a breach.

Learn more at the AWS Security Center »

the AWS Partner Ecosystem is extensive and can meet many of the needs you'll have as you move. Whether you need assistance with architecture and migration or help with evaluating your application portfolio, our partners can help.

Visit the AWS Partner Network »


The foundation of many organizations lie in databases such as SAP and Oracle. However, today, running these databases on AWS can be much more beneficial to your organization, allowing you to focus on building the future of your business on AWS. Let AWS be the foundation of your business.

600x400_SAP_Logo

SAP and Amazon Web Services maintain a partnership together to ensure our customers have a choice. Running SAP on AWS has never been easier. AWS is fully certified to run in production, and has an extensive partner ecosystem that can help with migration.

Learn more »

600x400_Microsoft-Logo

Amazon Web Services enables Microsoft applications such as SharePoint, Exchange, SQL Server and many other applications to run certified in production. This alleviates the cost and complexity of running it on-premises, and provides the convenience of bring your own licenses.

Learn more »

600x400_Oracle-Logo

Today, organizations can deploy Oracle databases and applications in production on Amazon Web Services. Whether you're looking to migrate a database, or looking to move your Oracle applications to the AWS Cloud, an extensive partner ecosystem is here to help.

Learn more »

#####EOF#####